mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-06 14:32:22 +00:00
9 lines
225 B
Plaintext
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)
|