Merge pull request #7036 from infinivision/fix_bitmapMax_doc

fix bitmapMin and bitmapMax doc
This commit is contained in:
alexey-milovidov 2019-09-23 01:49:04 +03:00 committed by GitHub
commit 0dc4b1793d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ namespace ErrorCodes
* Retrun bitmap cardinality:
* bitmapCardinality: bitmap -> integer
*
* Retrun smallest value in the set:
* Retrun the smallest value in the set:
* bitmapMin: bitmap -> integer
*
* Retrun the greatest value in the set:

View File

@ -320,7 +320,7 @@ SELECT bitmapCardinality(bitmapBuild([1, 2, 3, 4, 5])) AS res
## bitmapMin
Retrun smallest value of type UInt64 in the set, UINT32_MAX if the set is empty.
Retrun the smallest value of type UInt64 in the set, UINT32_MAX if the set is empty.
```
@ -345,7 +345,7 @@ SELECT bitmapMin(bitmapBuild([1, 2, 3, 4, 5])) AS res
## bitmapMax
Retrun smallest value of type UInt64 in the set, 0 if the set is empty.
Retrun the greatest value of type UInt64 in the set, 0 if the set is empty.
```