Skip to content

Commit

Permalink
add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu committed Sep 6, 2024
1 parent 39bb2ec commit 5911089
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration/test_writes/test_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,10 @@ def test_duckdb_url_import(warehouse: Path, arrow_table_with_null: pa.Table) ->

import duckdb

query = "SELECT * FROM duckdb_extensions() WHERE extension_name = 'iceberg'"
print(f"Before: \n{duckdb.sql(query)}")
duckdb.sql("INSTALL iceberg; LOAD iceberg;")
print(f"After: \n{duckdb.sql(query)}")
result = duckdb.sql(
f"""
SELECT *
Expand Down

0 comments on commit 5911089

Please sign in to comment.