ClickHouse/tests/queries/0_stateless/01120_join_constants.sql
Alexey Milovidov 66d9ba9389 Added a test
2020-04-12 19:24:16 +03:00

18 lines
233 B
SQL

SELECT
t1.*,
t2.*,
'world',
isConstant('world')
FROM
(
SELECT
arrayJoin([1, 2]) AS k,
'hello'
) AS t1
LEFT JOIN
(
SELECT
arrayJoin([1, 3]) AS k,
'world'
) AS t2 ON t1.k = t2.k;