iceberg-python
iceberg-python copied to clipboard
make to_duckdb accept multiple tables
Feature Request / Improvement
currently it seems
con =catalog.load_table('aemo.scada').scan().to_duckdb(table_name="scada")
accept only 1 table, it will be nice to have something like
con =catalog.load_namespace('aemo').scan().to_duckdb()
which will expose the whole database to duckdb in one go
Thanks for reporting this. I like it! We need to have support for lazy datasets before this becomes feasible.
is there a way to load two tables, it seems you can only Query 1 table at the time ?