Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 0d5d492

Browse files
Merge pull request #10 from fabianmenges/patch-1
Add support for TIMESTAMPTZ abbreviation.
2 parents 26d3b4d + 7cac2fd commit 0d5d492

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

sqla_vertica_python/vertica_python.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class VerticaDialect(PGDialect):
2929
'TIME': sqltypes.TIME,
3030
'TIME': sqltypes.TIME(timezone=True),
3131
'TIMESTAMP': sqltypes.TIMESTAMP,
32+
'TIMESTAMPTZ': sqltypes.TIMESTAMP(timezone=True),
3233
'TIMESTAMP WITH TIMEZONE': sqltypes.TIMESTAMP(timezone=True),
3334

3435
# Not supported yet

0 commit comments

Comments
 (0)