News

I may be missing something fundamental, but Pyarrow seems to improperly handle the conversion from datetime.datetime and datetime.time objects with non-UTC timezones. Datetimes. This Python datetime ...
What happens? Incorrect timezone conversion. To Reproduce from datetime import datetime, timezone import duckdb dt = datetime.now(timezone.utc).replace(microsecond=0) print(dt) q = "CREATE TABLE IF ...