Lists all tables in the Working DuckLake along with provenance statistics (ingestion times, source files, row counts).
Arguments
- con
DuckDB connection from
get_working_ducklake()
Value
Tibble with columns:
table: Table namerows: Total row countfirst_ingested: Earliest ingestion timestamplast_ingested: Most recent ingestion timestampsource_files: Number of distinct source files
Examples
if (FALSE) { # \dontrun{
con <- get_working_ducklake(read_only = TRUE)
tables <- list_working_tables(con)
tables
} # }