Add a test for #44318

This commit is contained in:
Alexey Milovidov 2024-02-20 12:28:01 +01:00
parent 3541937950
commit 9036a69747
2 changed files with 15 additions and 0 deletions

View File

@ -12,3 +12,15 @@ CREATE TEMPORARY TABLE t_proj
)
ENGINE = MergeTree
ORDER BY id
CREATE TEMPORARY TABLE t_proj2
(
`a` UInt32,
`b` UInt32,
PROJECTION p
(
SELECT a
ORDER BY b * 2
)
)
ENGINE = MergeTree
ORDER BY a

View File

@ -1,2 +1,5 @@
CREATE TEMPORARY TABLE t_proj (t DateTime, id UInt64, PROJECTION p (SELECT id, t ORDER BY toStartOfDay(t))) ENGINE = MergeTree ORDER BY id;
SHOW CREATE TEMPORARY TABLE t_proj FORMAT TSVRaw;
CREATE TEMPORARY TABLE t_proj2 (a UInt32, b UInt32, PROJECTION p (SELECT a ORDER BY b * 2)) ENGINE = MergeTree ORDER BY a;
SHOW CREATE TEMPORARY TABLE t_proj2 FORMAT TSVRaw;