Added a test to clearly illustrate the difference between arrayEnumerateUniq and arrayEnumerateDense #2975

This commit is contained in:
Alexey Milovidov 2018-08-30 23:43:08 +03:00
parent 46a38b72b9
commit 9acb770c23
2 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1 @@
[1,1,1,2,2] [1,2,3,1,2]

View File

@ -0,0 +1 @@
SELECT arrayEnumerateUniq([1, 2, 3, 1, 2]), arrayEnumerateDense([1, 2, 3, 1, 2]);