2019-08-29 18:45:34 +00:00
|
|
|
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|
2023-03-01 13:08:24 +00:00
|
|
|
|
|
|
|
SET join_algorithm = 'auto';
|
|
|
|
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|
|
|
|
|
2024-07-12 12:49:26 +00:00
|
|
|
-- Just to test that we preserved old setting name this we use `enable_analyzer` instead of `enable_analyzer` here.
|
2024-07-30 21:29:07 +00:00
|
|
|
SET allow_experimental_analyzer = 1;
|
2023-03-01 13:08:24 +00:00
|
|
|
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|