Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bitmapMin and bitmapMax doc #7036

Merged
merged 1 commit into from Sep 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dbms/src/Functions/FunctionsBitmap.h
Expand Up @@ -49,7 +49,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:
Expand Down
4 changes: 2 additions & 2 deletions docs/en/query_language/functions/bitmap_functions.md
Expand Up @@ -294,7 +294,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.


```
Expand All @@ -319,7 +319,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.


```
Expand Down