Remove duplicate test cases in 03224_arrayUnion.sql

This commit is contained in:
Peter Nguyen 2024-09-06 08:25:17 -06:00
parent fd6cb4eb8c
commit 3311214915
2 changed files with 0 additions and 42 deletions

View File

@ -28,36 +28,6 @@
[]
[]
-------
[1,2]
[1,2]
[1,2]
[1,2,3]
-------
[]
[1]
[1,2]
[1,2,3]
-------
[]
[1]
[1,2]
[1,2,3]
-------
[1,2]
[1,2]
[1,2]
[1,2,3]
-------
[1,2,3,4]
[1,2,3,4]
[1,2,3,4]
[1,2,3,4]
-------
[]
[]
[]
[]
-------
[-100,156]
-------
[-257,-100,1]

View File

@ -8,18 +8,6 @@ insert into array_union values ('2019-01-01', [1]);
insert into array_union values ('2019-01-01', []);
select arraySort(arrayUnion(arr, [1,2])) from array_union order by arr;
select '-------';
select arraySort(arrayUnion(arr, [])) from array_union order by arr;
select '-------';
select arraySort(arrayUnion([], arr)) from array_union order by arr;
select '-------';
select arraySort(arrayUnion([1,2], arr)) from array_union order by arr;
select '-------';
select arraySort(arrayUnion([1,2], [1,2,3,4])) from array_union order by arr;
select '-------';
select arraySort(arrayUnion([], [])) from array_union order by arr;
select '-------';
select arraySort(arrayUnion(arr, [1,2])) from array_union order by arr;
select '-------';
select arraySort(arrayUnion(arr, [])) from array_union order by arr;