Merge pull request #23332 from ClickHouse/add-test-7815

Add test for #7815
This commit is contained in:
Maksim Kita 2021-04-20 12:02:50 +03:00 committed by GitHub
commit 1bdd699f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;