We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be7fbb commit 2b891c5Copy full SHA for 2b891c5
src/questdb_connect/__init__.py
@@ -43,15 +43,6 @@
43
resolve_type_from_name,
44
)
45
46
-# QuestDB timestamps: https://questdb.io/docs/guides/working-with-timestamps-timezones/
47
-# The native timestamp format used by QuestDB is a Unix timestamp in microsecond resolution.
48
-# Although timestamps in nanoseconds will be parsed, the output will be truncated to
49
-# microseconds. QuestDB does not store time zone information alongside timestamp values
50
-# and therefore it should be assumed that all timestamps are in UTC.
51
-if hasattr(time, "tzset"):
52
- os.environ["TZ"] = "UTC"
53
- time.tzset()
54
-
55
# ===== DBAPI =====
56
# https://peps.python.org/pep-0249/
57
0 commit comments