-
what's the simplest way to get the latest list of parquet files and deletion files if any for a particular table |
Beta Was this translation helpful? Give feedback.
Answered by
uwemaurer
Jun 1, 2025
Replies: 1 comment
-
like this by
or by table name:
https://ducklake.select/docs/stable/specification/tables/overview |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
djouallah
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
like this by
table_id
select path from ducklake_data_file where table_id=1
or by table name:
select path from ducklake_data_file join ducklake_table using (table_id) where table_name='test'
https://ducklake.select/docs/stable/specification/tables/overview