pub type RowId = u64;Expand description
Unique identifier for a row within a table.
Row IDs are 64-bit unsigned integers assigned sequentially on insert. They are:
- Globally unique within a table
- Never reused (even after deletion)
- Monotonically increasing (within append batches)
- Used for joins, filters, and row-level operations