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_tag
Columns can also have tags, those are defined in this table.
Column name | Column type | |
---|---|---|
table_id |
BIGINT |
|
column_id |
BIGINT |
|
begin_snapshot |
BIGINT |
|
end_snapshot |
BIGINT |
|
key |
VARCHAR |
|
value |
VARCHAR |
table_id
refers to atable_id
from theducklake_table
table.column_id
refers to acolumn_id
from theducklake_column
table.begin_snapshot
refers to asnapshot_id
from theducklake_snapshot
table. The tag is valid starting with this snapshot id.end_snapshot
refers to asnapshot_id
from theducklake_snapshot
table. The tag is valid until this snapshot id. Ifend_snapshot
isNULL
, the tag is currently valid.key
is an arbitrary key string. The key can't beNULL
.value
is the arbitrary value string.