mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
6 lines
433 B
SQL
6 lines
433 B
SQL
select * from (select tuple(1) as a union all select tuple(1) as a) order by a;
|
|
select * from (select tuple(1) as a union all select tuple(2) as a) order by a;
|
|
select * from (select tuple(materialize(0)) as a union all select tuple(0) as a) order by a;
|
|
select * from (select tuple(range(1)[1]) as a union all select tuple(0) as a) order by a;
|
|
select * from (select tuple(range(1)[2]) as a union all select tuple(1) as a) order by a;
|