Merge pull request #5000 from ogorbacheva/DocFix-issue4999

Doc fix: Fixing example of `arrayEnumerateDense`
This commit is contained in:
ogorbacheva 2019-04-12 19:36:53 +03:00 committed by GitHub
commit cdc65eca23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -499,7 +499,7 @@ SELECT arrayDistinct([1, 2, 2, 3, 1])
## arrayEnumerateDense(arr)
Returns an array of the same size as the source array, indicating where each element first appears in the source array. For example: arrayEnumerateDense([10,20,10,30]) = [1,2,1,4].
Returns an array of the same size as the source array, indicating where each element first appears in the source array. For example: arrayEnumerateDense([10,20,10,30]) = [1,2,1,3].
## arrayIntersect(arr)