mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
7 lines
271 B
SQL
7 lines
271 B
SQL
drop table if exists lc_lambda;
|
|
create table lc_lambda (arr Array(LowCardinality(UInt64))) engine = Memory;
|
|
insert into lc_lambda select range(number) from system.numbers limit 10;
|
|
select arrayFilter(x -> x % 2 == 0, arr) from lc_lambda;
|
|
drop table if exists lc_lambda;
|
|
|