aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/python/pgdb.py
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-05-03 04:11:08 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-05-03 04:11:08 +0000
commit8338cc03a8915e28024981d09193612ec4a83819 (patch)
tree8845f3a7695af8370cb60c2461d39e70be667584 /src/interfaces/python/pgdb.py
parent53cedcac22bca29bb6ac766b04d5dd08db77ac03 (diff)
downloadpostgresql-8338cc03a8915e28024981d09193612ec4a83819.tar.gz
postgresql-8338cc03a8915e28024981d09193612ec4a83819.zip
Remove the last traces of datatypes datetime and timespan.
Diffstat (limited to 'src/interfaces/python/pgdb.py')
-rw-r--r--src/interfaces/python/pgdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/python/pgdb.py b/src/interfaces/python/pgdb.py
index c9a8e47b895..7c6b89dfc30 100644
--- a/src/interfaces/python/pgdb.py
+++ b/src/interfaces/python/pgdb.py
@@ -415,7 +415,7 @@ MONEY = pgdbType('money')
# this may be problematic as type are quite different ... I hope it won't hurt
DATETIME = pgdbType(
- 'abstime', 'reltime', 'tinterval', 'date', 'time', 'timespan', 'timestamp'
+ 'abstime', 'reltime', 'tinterval', 'date', 'time', 'timespan', 'timestamp', 'timestamptz', 'interval'
)
# OIDs are used for everything (types, tables, BLOBs, rows, ...). This may cause