dbms: added tests [#METR-10572].

This commit is contained in:
Alexey Milovidov 2014-03-26 03:14:51 +04:00
parent 82f6b4a73d
commit 6aa304ba4a
4 changed files with 10 additions and 0 deletions

View File

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

View File

@ -0,0 +1 @@
SELECT arrayJoin([[3,4,5], [6,7], [2], [1,1]]) AS x ORDER BY x

View File

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

View File

@ -0,0 +1 @@
SELECT arrayJoin([[3,4,5], [6,7], [2], [1,1]]) AS x ORDER BY x DESC