From: D'Arcy J.M. Cain Date: Fri, 15 Jun 2001 02:23:18 +0000 (+0000) Subject: Add bpchar to list of string types. X-Git-Tag: REL9_0_0~20313 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f09546fabf5c13c6fac457838c7366171df469fc;p=pg-rex%2Fsyncrep.git Add bpchar to list of string types. Thanks to Steve McClure for the patch. --- diff --git a/src/interfaces/python/pgdb.py b/src/interfaces/python/pgdb.py index 68cd64cc22..85ff7656c6 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