mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Added test
This commit is contained in:
parent
4721b16b51
commit
a29fd043a4
@ -0,0 +1,11 @@
|
||||
[]
|
||||
[0]
|
||||
[0]
|
||||
[0,2]
|
||||
[0,2]
|
||||
[0,2,4]
|
||||
[0,2,4]
|
||||
[0,2,4,6]
|
||||
[0,2,4,6]
|
||||
[0,2,4,6,8]
|
||||
|
@ -0,0 +1,7 @@
|
||||
set allow_experimental_low_cardinality_type = 1;
|
||||
drop table if exists test.lc_lambda;
|
||||
create table test.lc_lambda (arr Array(LowCardinality(UInt64))) engine = Memory;
|
||||
insert into test.lc_lambda select range(number) from system.numbers limit 10;
|
||||
select arrayFilter(x -> x % 2 == 0, arr) from test.lc_lambda;
|
||||
drop table if exists test.lc_lambda;
|
||||
|
Loading…
Reference in New Issue
Block a user