Nikita Fomichev 2024-04-03 13:17:19 +02:00
parent 0b831ab87a
commit f822791ee3
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
-- https://github.com/ClickHouse/ClickHouse/issues/9233
SELECT *
FROM
(
SELECT
[1, 2, 3] AS x,
[4, 5, 6] AS y
)
ARRAY JOIN
x,
Y; -- { serverError UNKNOWN_IDENTIFIER }