Skip to content

Commit 7de87da

Browse files
Merge pull request ClickHouse#80308 from ClickHouse/add-test-46319
Add a test for ClickHouse#46319
2 parents eba49df + 27b83dc commit 7de87da

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2
2+
2
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
SET enable_analyzer = 1;
2+
3+
SELECT count(*)
4+
FROM
5+
(
6+
SELECT
7+
['a', 'b'] AS a1,
8+
[1] AS a2
9+
) AS bb
10+
ARRAY JOIN
11+
a2,
12+
a1
13+
SETTINGS enable_unaligned_array_join = 1
14+
;
15+
16+
SELECT count(*)
17+
FROM
18+
(
19+
SELECT
20+
['a', 'b'] AS a1,
21+
[1] AS a2
22+
) AS bb
23+
ARRAY JOIN
24+
a1,
25+
a2
26+
SETTINGS enable_unaligned_array_join = 1
27+
;

0 commit comments

Comments
 (0)