mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add test for #7815
This commit is contained in:
parent
db82e9e3d5
commit
8ef84eeaa1
@ -0,0 +1 @@
|
|||||||
|
[['a'],['b','c']]
|
@ -0,0 +1,7 @@
|
|||||||
|
create temporary table test (
|
||||||
|
arr Array(Array(LowCardinality(String)))
|
||||||
|
);
|
||||||
|
|
||||||
|
insert into test(arr) values ([['a'], ['b', 'c']]);
|
||||||
|
|
||||||
|
select arrayFilter(x -> 1, arr) from test;
|
Loading…
Reference in New Issue
Block a user