Search Shortcut cmd + k | ctrl + k
- Documentation
- Specification
- Introduction
- Data Types
- Queries
- Tables
- Overview
- column
- column_mapping
- name_mapping
- column_tag
- data_file
- delete_file
- file_column_stats
- file_partition_value
- files_scheduled_for_deletion
- inlined_data_tables
- metadata
- partition_column
- partition_info
- schema
- schema_versions
- snapshot
- snapshot_changes
- table
- table_column_stats
- table_stats
- tag
- view
- DuckDB Extension
- Introduction
- Usage
- Connecting
- Choosing a Catalog Database
- Choosing Storage
- Snapshots
- Schema Evolution
- Time Travel
- Upserting
- Configuration
- Paths
- Maintenance
- Recommended Maintenance
- Merge Files
- Expire Snapshots
- Cleanup of Files
- Rewrite Files with Deletes
- Checkpoint
- Advanced Features
- Constraints
- Conflict Resolution
- Data Change Feed
- Data Inlining
- Encryption
- Partitioning
- Transactions
- Row Lineage
- Views
- Comments
- Metadata
- Migrations
- Guides
- Unsupported Features
- FAQ
Documentation
/ Specification
/ Tables
ducklake_file_partition_value
This table defines which data file belongs to which partition.
| Column name | Column type | |
|---|---|---|
data_file_id |
BIGINT |
|
table_id |
BIGINT |
|
partition_key_index |
BIGINT |
|
partition_value |
VARCHAR |
data_file_idrefers to adata_file_idfrom theducklake_data_filetable.table_idrefers to atable_idfrom theducklake_tabletable.partition_key_indexrefers to apartition_key_indexfrom theducklake_partition_columntable.partition_valueis the value that all the rows in the data file have, encoded as a string.