Remove optimize query from 03224_arrayUnion.sql

This commit is contained in:
Peter Nguyen 2024-08-28 08:02:57 -06:00
parent 8ba7cd52e4
commit f09951ac3d

View File

@ -20,9 +20,6 @@ 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 '-------';
optimize table array_union;
select arraySort(arrayUnion(arr, [1,2])) from array_union order by arr;
select '-------';
select arraySort(arrayUnion(arr, [])) from array_union order by arr;