Update array_functions.md

This commit is contained in:
alexey-milovidov 2020-02-03 01:39:46 +03:00 committed by GitHub
parent b71ab145f9
commit 0adbd57648
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -737,22 +737,6 @@ Result:
│ [1,2,3] │
└────────────────────────────────┘
```
Example of rounding due to result type Float64:
Query:
```sql
SELECT arrayDistinct([1, 2, 2, 100000000000000000005566765768890])
```
Result:
```text
┌─arrayDistinct([1, 2, 2, 1e32])─┐
│ [1,2,1e32] │
└────────────────────────────────┘
```
## arrayEnumerateDense(arr) {#array_functions-arrayenumeratedense}