This table describes tables. Inception!
Column name | Column type | |
---|---|---|
table_id |
BIGINT |
|
table_uuid |
UUID |
|
begin_snapshot |
BIGINT |
|
end_snapshot |
BIGINT |
|
schema_id |
BIGINT |
|
table_name |
VARCHAR |
table_id
is the numeric identifier of the table.table_id
is incremented fromnext_catalog_id
in theducklake_snapshot
table.table_uuid
is a UUID that gives a persistent identifier for this table. The UUID is stored here for compatibility with existing Lakehouse formats.begin_snapshot
refers to asnapshot_id
from theducklake_snapshot
table. The table exists starting with this snapshot id.end_snapshot
refers to asnapshot_id
from theducklake_snapshot
table. The table exists until this snapshot id. Ifend_snapshot
isNULL
, the table is currently valid.schema_id
refers to aschema_id
from theducklake_schema
table.table_name
is the name of the table, e.g.my_table
.