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
4 lines
202 B
SQL
4 lines
202 B
SQL
SET any_join_distinct_right_table_keys = 1;
|
|
SET max_block_size = 10;
|
|
SELECT * FROM (select toUInt64(1) s limit 1) js1 any right join (select number s, s as x from numbers(11)) js2 using (s) ORDER BY s;
|