Skip to content
Merged
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/rtree.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Hilbert sorting is performed in three steps:
The R-Tree index consists of two files:

1. `page_data.lance` - Stores all pages (leaf, branch) as repeated `(bbox, id)` tuples, written bottom-up (leaves first, then branch levels)
2. `nulls.lance` - Stores a serialized RowIdTreeMap of rows with null
2. `nulls.lance` - Stores a serialized RowAddrTreeMap of rows with null

### Page File Schema

Expand All @@ -75,9 +75,9 @@ The R-Tree index consists of two files:

### Nulls File Schema

| Column | Type | Nullable | Description |
|:--------|:-------|:---------|:-----------------------------------------------------------|
| `nulls` | Binary | false | Serialized RowIdTreeMap of rows with null/invalid geometry |
| Column | Type | Nullable | Description |
|:--------|:-------|:---------|:-------------------------------------------------------------|
| `nulls` | Binary | false | Serialized RowAddrTreeMap of rows with null/invalid geometry |

### Schema Metadata

Expand Down
Loading