ClickHouse/tests/queries/0_stateless/03274_udf_in_join.reference

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
83 B
Plaintext
Raw Normal View History

SELECT 1
FROM
(
SELECT 1 AS c0
) AS v0
ALL INNER JOIN v0 AS vx ON c0 = vx.c0
1