Added test [#METR-22329].

This commit is contained in:
Alexey Milovidov 2016-08-20 20:19:06 +03:00
parent 902c70bfa9
commit d76514fbe1
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,4 @@
1
1
[1,2,3]
[4,5,6]

View File

@ -0,0 +1,2 @@
select toUInt64(1) union all select countIf(n>0) from (select 2 as n);
select [1,2,3] AS q UNION ALL select groupArray(arrayJoin([4,5,6])) AS q ORDER BY q;