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_table_stats
This table contains table-level statistics.
Column name | Column type | |
---|---|---|
table_id |
BIGINT |
|
record_count |
BIGINT |
|
next_row_id |
BIGINT |
|
file_size_bytes |
BIGINT |
table_id
refers to atable_id
from theducklake_table
table.record_count
is the total amount of rows in the table. This can be approximate.next_row_id
is the row id for newly inserted rows. Used for row lineage tracking.file_size_bytes
is the total file size of all data files in the table. This can be approximate.