mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
fix another tests
This commit is contained in:
parent
3705035457
commit
2fee5ccd34
@ -1,3 +1,5 @@
|
||||
SET any_join_get_any_from_right_table = 1;
|
||||
|
||||
select x, y from (select 1 as x, 2 as y, x, y);
|
||||
select x, y from (select 1 as x, 1 as y, x, y);
|
||||
select x from (select 1 as x, 1 as y, x, y);
|
||||
|
@ -1,3 +1,5 @@
|
||||
SET any_join_get_any_from_right_table = 1;
|
||||
|
||||
SELECT k, a1, b1, a2, b2 FROM (SELECT 0 AS k, 'hello' AS a1, 123 AS b1, a1) ANY FULL OUTER JOIN (SELECT 1 AS k, 'hello' AS a2, 456 AS b2, a2) USING (k) ORDER BY k;
|
||||
SELECT k, a, b FROM (SELECT 0 AS k, 'hello' AS a, 123 AS b, a) ANY FULL OUTER JOIN (SELECT 1 AS k) USING (k) ORDER BY k;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user