ClickHouse/tests/queries/0_stateless/02476_fix_lambda_parsing.reference
Nikolay Degterinsky 3d0f0e3896 Apply another fix
2022-11-07 14:13:02 +00:00

9 lines
225 B
Plaintext

SELECT f(x, y -> z)
SELECT f(x, y -> z)
SELECT f((x, y) -> z)
SELECT f((x, y) -> z)
SELECT f((x, y) -> z)
SELECT f(x, (x, y) -> z)
SELECT f(x, (x, y) -> z)
CREATE FUNCTION func AS x -> plus(x, (x -> ('2' + 2)) -> plus(1), 1)