dbms: added test [#METR-10872].

This commit is contained in:
Alexey Milovidov 2015-05-12 22:28:41 +03:00
parent 6f1f6e3d99
commit 8f64441bbf
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
[1] 123
[3] 123
[1,1] 123
[3,4] 123

View File

@ -0,0 +1,4 @@
SELECT arrayMap(x -> 1, [2]), 123 AS y;
SELECT arrayMap(x -> x + 1, [2]), 123 AS y;
SELECT arrayMap(x -> 1, [2, 3]), 123 AS y;
SELECT arrayMap(x -> x + 1, [2, 3]), 123 AS y;