Search Shortcut cmd + k | ctrl + k
- Documentation
- Specification
- Introduction
- Data Types
- Queries
- Tables
- DuckDB Extension
- Introduction
- Usage
- Connecting
- Choosing a Catalog Database
- Choosing Storage
- Snapshots
- Schema Evolution
- Time Travel
- Configuration
- Paths
- Maintenance
- Advanced Features
- Constraints
- Conflict Resolution
- Data Change Feed
- Data Inlining
- Encryption
- Partitioning
- Transactions
- Row Lineage
- Views
- Comments
- Metadata
- FAQ
Documentation
/ Specification
/ Tables
ducklake_column_mapping
Mappings contain the information used to map parquet fields to column ids in the absence of field-id
s in the Parquet file.
Column name | Column type | |
---|---|---|
mapping_id |
BIGINT |
|
table_id |
BIGINT |
|
type |
VARCHAR |
mapping_id
is the numeric identifier of the mapping.mapping_id
is incremented fromnext_catalog_id
in theducklake_snapshot
table.table_id
refers to atable_id
from theducklake_table
table.type
defines what method is used to perform the mapping.
The valid type
values:
type |
Description |
---|---|
map_by_name |
Map the columns based on the names in the parquet file |