Update tests

This commit is contained in:
hcz 2019-11-13 11:00:08 +08:00
parent 11960bbaf9
commit 08f8bbf52e
2 changed files with 6 additions and 2 deletions

View File

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

View File

@ -12,6 +12,8 @@ SELECT arraySplit(x -> 0, []);
SELECT arrayReverseSplit(x -> 0, []);
SELECT arraySplit(x -> 1, []);
SELECT arrayReverseSplit(x -> 1, []);
SELECT arraySplit(x -> x, emptyArrayUInt8());
SELECT arrayReverseSplit(x -> x, emptyArrayUInt8());
SELECT arraySplit(x -> x % 2 = 1, [1]);
SELECT arrayReverseSplit(x -> x % 2 = 1, [1]);