Skipped attrelid, varattnum linking for PG>=75

git-svn-id: http://svn.osgeo.org/postgis/trunk@576 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Sandro Santilli 2004-06-03 13:20:53 +00:00
parent 012ed444f5
commit 5169813d46

View file

@ -17,6 +17,7 @@
#define CREATEFUNCTION CREATE FUNCTION
#endif
BEGIN TRANSACTION;
-- You might have to define the PL/PgSQL language usually done with the
@ -371,6 +372,12 @@ BEGIN
FROM pg_namespace );
#endif
#if USE_VERSION >= 75
-- no linkage to system table needed
return "done";
#endif
-- fix linking to system tables
UPDATE geometry_columns SET
attrelid = NULL,
varattnum = NULL,