- Documentation
- Specification
- Introduction
- Data Types
- Queries
- Tables
- DuckDB Extension
- Introduction
- Usage
- Maintenance
- Advanced Features
- FAQ
Documentation
/ Specification
/ Tables
ducklake_files_scheduled_for_deletion
Files that are no longer part of any snapshot are scheduled for deletion
Column name | Column type | |
---|---|---|
data_file_id |
BIGINT |
|
path |
VARCHAR |
|
path_is_relative |
BOOLEAN |
|
schedule_start |
TIMESTAMP |
data_file_id
refers to adata_file_id
from theducklake_data_file
table.path
is the file name of the file, e.g.my_file.parquet
. The file name is either relative to thedata_path
value inducklake_metadata
or absolute. If relative, thepath_is_relative
field is set totrue
.path_is_relative
defines whether the path is absolute or relative, see above.schedule_start
is a time stamp of when this file was scheduled for deletion.