Remove typprtlen from getdescr() as it is not available in 7.3. Return -1 for

that field so that existing programs don't break.
This commit is contained in:
D'Arcy J.M. Cain 2002-12-04 12:23:42 +00:00
parent 93902e9521
commit e3d7c9ba54
1 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ class pgdbTypeCache:
return self.__type_cache[oid]
except:
self.__source.execute(
"SELECT typname, typprtlen, typlen "
"SELECT typname, typlen "
"FROM pg_type WHERE oid = %s" % oid
)
res = self.__source.fetch(1)[0]
@ -155,7 +155,7 @@ class pgdbTypeCache:
# have to be prepended by the caller.
res = (
res[0],
string.atoi(res[1]), string.atoi(res[2]),
-1, string.atoi(res[1]),
None, None, None
)
self.__type_cache[oid] = res