aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/python/pgdb.py
diff options
context:
space:
mode:
authorD'Arcy J.M. Cain <darcy@druid.net>2001-06-15 02:23:18 +0000
committerD'Arcy J.M. Cain <darcy@druid.net>2001-06-15 02:23:18 +0000
commitf09546fabf5c13c6fac457838c7366171df469fc (patch)
treed26c381f357be2619295fcfc1d6fde63df0df323 /src/interfaces/python/pgdb.py
parent823ab922951a4ee15c1ca3d142a8f63547b8b5b4 (diff)
downloadpostgresql-f09546fabf5c13c6fac457838c7366171df469fc.tar.gz
postgresql-f09546fabf5c13c6fac457838c7366171df469fc.zip
Add bpchar to list of string types.
Thanks to Steve McClure <smcclure@racemi.com> for the patch.
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 68cd64cc220..85ff7656c69 100644
--- a/src/interfaces/python/pgdb.py
+++ b/src/interfaces/python/pgdb.py
@@ -395,7 +395,7 @@ class pgdbType:
return -1
STRING = pgdbType(
- 'char', 'name', 'text', 'varchar'
+ 'char', 'bpchar', 'name', 'text', 'varchar'
)
# BLOB support is pg specific