diff options
author | D'Arcy J.M. Cain <darcy@druid.net> | 2001-06-15 02:23:18 +0000 |
---|---|---|
committer | D'Arcy J.M. Cain <darcy@druid.net> | 2001-06-15 02:23:18 +0000 |
commit | f09546fabf5c13c6fac457838c7366171df469fc (patch) | |
tree | d26c381f357be2619295fcfc1d6fde63df0df323 /src/interfaces/python/pgdb.py | |
parent | 823ab922951a4ee15c1ca3d142a8f63547b8b5b4 (diff) | |
download | postgresql-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.py | 2 |
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 |