mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Fixes after review
This commit is contained in:
parent
56eef87d29
commit
06423bb2eb
@ -84,7 +84,7 @@ SELECT bitmapToArray(bitmapSubsetInRange(bitmapBuild([0,1,2,3,4,5,6,7,8,9,10,11,
|
||||
|
||||
## bitmapSubsetLimit {#bitmapsubsetlimit}
|
||||
|
||||
Returns a subset of a bitmap. The subset values are sorted in ascending order and its cardinality and starting point do not exceed the corresponding input values.
|
||||
Creates a subset of bitmap with n elements taken between `range_start` and `cardinality_limit`.
|
||||
|
||||
**Syntax**
|
||||
|
||||
@ -100,7 +100,7 @@ bitmapSubsetLimit(bitmap, range_start, cardinality_limit)
|
||||
|
||||
**Returned value**
|
||||
|
||||
The subset of a given bitmap.
|
||||
The subset.
|
||||
|
||||
Type: `Bitmap object`.
|
||||
|
||||
@ -109,15 +109,15 @@ Type: `Bitmap object`.
|
||||
Query:
|
||||
|
||||
```sql
|
||||
SELECT bitmapToArray(bitmapSubsetLimit(bitmapBuild([30, 20, 10, 1, 2, 3]), toUInt32(2), toUInt32(3))) AS res;
|
||||
SELECT bitmapToArray(bitmapSubsetLimit(bitmapBuild([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,100,200,500]), toUInt32(30), toUInt32(200))) AS res
|
||||
```
|
||||
|
||||
Result:
|
||||
|
||||
```text
|
||||
┌─res──────┐
|
||||
│ [2,3,10] │
|
||||
└──────────┘
|
||||
┌─res───────────────────────┐
|
||||
│ [30,31,32,33,100,200,500] │
|
||||
└───────────────────────────┘
|
||||
```
|
||||
|
||||
## bitmapContains {#bitmap_functions-bitmapcontains}
|
||||
|
@ -50,7 +50,7 @@ SELECT bitmapToArray(bitmapBuild([1, 2, 3, 4, 5])) AS res
|
||||
|
||||
## bitmapSubsetLimit {#bitmapsubsetlimit}
|
||||
|
||||
Возвращает подмножество битового массива. Значения подмножества сортируются в порядке возрастания, а его верхний предел и начальная точка не превышают соответствующие входные значения.
|
||||
Создает подмножество битмапа с n элементами, расположенными между `range_start` и `cardinality_limit`.
|
||||
|
||||
**Синтаксис**
|
||||
|
||||
@ -60,13 +60,13 @@ bitmapSubsetLimit(bitmap, range_start, cardinality_limit)
|
||||
|
||||
**Параметры**
|
||||
|
||||
- `bitmap` – Битовый массив. [Bitmap object](#bitmap_functions-bitmapbuild).
|
||||
- `bitmap` – Битмап. [Bitmap object](#bitmap_functions-bitmapbuild).
|
||||
- `range_start` – Начальная точка подмножества. [UInt32](../../data_types/int_uint.md).
|
||||
- `cardinality_limit` – Верхний предел подмножества. [UInt32](../../data_types/int_uint.md).
|
||||
|
||||
**Возвращаемое значение**
|
||||
|
||||
Подмножество битового массива.
|
||||
Подмножество битмапа.
|
||||
|
||||
Тип: `Bitmap object`.
|
||||
|
||||
@ -75,15 +75,15 @@ bitmapSubsetLimit(bitmap, range_start, cardinality_limit)
|
||||
Запрос:
|
||||
|
||||
```sql
|
||||
SELECT bitmapToArray(bitmapSubsetLimit(bitmapBuild([30, 20, 10, 1, 2, 3]), toUInt32(2), toUInt32(3))) AS res;
|
||||
SELECT bitmapToArray(bitmapSubsetLimit(bitmapBuild([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,100,200,500]), toUInt32(30), toUInt32(200))) AS res
|
||||
```
|
||||
|
||||
Ответ:
|
||||
|
||||
```text
|
||||
┌─res──────┐
|
||||
│ [2,3,10] │
|
||||
└──────────┘
|
||||
┌─res───────────────────────┐
|
||||
│ [30,31,32,33,100,200,500] │
|
||||
└───────────────────────────┘
|
||||
```
|
||||
|
||||
## bitmapContains {#bitmap_functions-bitmapcontains}
|
||||
|
Loading…
Reference in New Issue
Block a user