You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/queries/0_stateless/03448_analyzer_array_join_alias_in_join_using_bug.reference
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,3 +36,7 @@ INNER JOIN (SELECT 1 + number as arr_item from numbers(2)) AS foo USING (arr_ite
36
36
[0,1,2] 2
37
37
[0,1,2] 1
38
38
[0,1,2] 2
39
+
-- Fuzzed
40
+
41
+
SELECT arr FROM remote('127.0.0.2', currentDatabase(), local_table) AS r ARRAY JOIN arr AS arr_item GLOBAL RIGHT JOIN (SELECT 1 AS arr_item) AS foo USING (arr_item);
Copy file name to clipboardExpand all lines: tests/queries/0_stateless/03448_analyzer_array_join_alias_in_join_using_bug.sql
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -39,3 +39,7 @@ SELECT arr, arr_item
39
39
FROM remote('127.0.0.{1,2}', currentDatabase(), local_table) r
40
40
ARRAY JOIN arr AS arr_item
41
41
INNER JOIN (SELECT1+numberas arr_item from numbers(2)) AS foo USING (arr_item);
42
+
43
+
-- Fuzzed
44
+
45
+
SELECT arr FROM remote('127.0.0.2', currentDatabase(), local_table) AS r ARRAY JOIN arr AS arr_item GLOBAL RIGHT JOIN (SELECT1AS arr_item) AS foo USING (arr_item);
0 commit comments