Skip to content

Commit

Permalink
chore: consistently implement duckdb timezone (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
eakmanrq authored Sep 22, 2024
1 parent 40822ea commit 880f0cb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/integration/engines/duck/test_duckdb_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
def duckdb_session() -> DuckDBSession:
import duckdb

connector = duckdb.connect()
connector.sql("set TimeZone = 'UTC'")
connector = duckdb.connect(config={"TimeZone": "UTC"})
session = DuckDBSession(connector)
session._execute('''ATTACH ':memory:' AS "default"''')
session._execute('''ATTACH ':memory:' AS "catalog1"''')
Expand Down

0 comments on commit 880f0cb

Please sign in to comment.