mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Added a test from Matt Robenolt #2662
This commit is contained in:
parent
781332d57c
commit
63bb074ba7
@ -0,0 +1,4 @@
|
|||||||
|
1 foo
|
||||||
|
1 foo
|
||||||
|
1 \N
|
||||||
|
\N
|
@ -0,0 +1,12 @@
|
|||||||
|
create temporary table wups (a Array(Nullable(String)));
|
||||||
|
select count(), a[1] from wups group by a[1];
|
||||||
|
insert into wups (a) values(['foo']);
|
||||||
|
select count(), a[1] from wups group by a[1];
|
||||||
|
insert into wups (a) values([]);
|
||||||
|
select count(), a[1] from wups group by a[1] order by a[1];
|
||||||
|
|
||||||
|
drop temporary table wups;
|
||||||
|
|
||||||
|
create temporary table wups (a Array(Nullable(String)));
|
||||||
|
insert into wups (a) values([]);
|
||||||
|
select a[1] from wups;
|
Loading…
Reference in New Issue
Block a user