- Documentation
- Specification
- Introduction
- Data Types
- Queries
- Tables
- DuckDB Extension
- Introduction
- Usage
- Maintenance
- Advanced Features
- FAQ
Documentation
/ Specification
/ Tables
ducklake_partition_info
Column name | Column type | |
---|---|---|
partition_id |
BIGINT |
|
table_id |
BIGINT |
|
begin_snapshot |
BIGINT |
|
end_snapshot |
BIGINT |
partition_id
is a numeric identifier for a partition.table_id
refers to atable_id
from theducklake_table
table.begin_snapshot
refers to asnapshot_id
from theducklake_snapshot
table. The partition is valid starting with this snapshot id.end_snapshot
refers to asnapshot_id
from theducklake_snapshot
table. The partition is valid until this snapshot id. Ifend_snapshot
isNULL
, the partition is currently valid.