Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/src/format/table/index/scalar/bitmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ The bitmap index consists of a single file `bitmap_page_lookup.lance` that store

### File Schema

| Column | Type | Nullable | Description |
|-----------|------------|----------|---------------------------------------------------------------------|
| `keys` | {DataType} | true | The unique value from the indexed column |
| `bitmaps` | Binary | true | Serialized RowIdTreeMap containing row IDs where this value appears |
| Column | Type | Nullable | Description |
|-----------|------------|----------|-------------------------------------------------------------------------|
| `keys` | {DataType} | true | The unique value from the indexed column |
| `bitmaps` | Binary | true | Serialized RowAddrTreeMap containing row addrs where this value appears |

## Accelerated Queries

Expand Down
8 changes: 4 additions & 4 deletions docs/src/format/table/index/scalar/label_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ The label list index uses a bitmap index internally and stores its data in:

### File Schema

| Column | Type | Nullable | Description |
|-----------|------------|----------|---------------------------------------------------------------------|
| `keys` | {DataType} | true | The unique label value from the indexed column |
| `bitmaps` | Binary | true | Serialized RowIdTreeMap containing row IDs where this label appears |
| Column | Type | Nullable | Description |
|-----------|------------|----------|------------------------------------------------------------------------|
| `keys` | {DataType} | true | The unique label value from the indexed column |
| `bitmaps` | Binary | true | Serialized RowAddrTreeMap containing row addr where this label appears |

## Accelerated Queries

Expand Down
Loading
Loading