Add test for #7815

This commit is contained in:
Alexey Milovidov 2021-04-20 03:16:39 +03:00
parent db82e9e3d5
commit 8ef84eeaa1
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
[['a'],['b','c']]

View File

@ -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;