Added workaround for PostgreSQL's user defined VARIABLE length datatype default value bug

git-svn-id: http://svn.osgeo.org/postgis/trunk@61 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
David Blasby 2001-09-04 19:41:45 +00:00
parent 81b33875e4
commit 977198de51

View file

@ -806,4 +806,9 @@ INSERT INTO pg_amproc (amid, amopclaid, amproc, amprocnum)
WHERE amname = 'gist' and opcname = 'gist_geometry_ops'
and proname = 'ggeometry_same';
--- workaround for user defined VARIABLE length datatype default value bug
update pg_type set typdefault = NULL where typname = 'wkb';
update pg_type set typdefault = NULL where typname = 'geometry';
end TRANSACTION;