mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
7 lines
314 B
MySQL
7 lines
314 B
MySQL
|
select arrayMap(x -> 2 * x, []);
|
||
|
select toTypeName(arrayMap(x -> 2 * x, []));
|
||
|
select arrayMap((x, y) -> x + y, [], []);
|
||
|
select toTypeName(arrayMap((x, y) -> x + y, [], []));
|
||
|
select arrayMap((x, y) -> x + y, [], CAST([], 'Array(Int32)'));
|
||
|
select toTypeName(arrayMap((x, y) -> x + y, [], CAST([], 'Array(Int32)')));
|