From: Sandro Santilli Date: Mon, 4 Jul 2011 09:00:48 +0000 (+0000) Subject: Do not manually delete rows from geometry_columns (which is now a view). Closes ticke... X-Git-Tag: 2.0.0alpha1~1274 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=887f180f153f53eb61e563c67d61779930852ba3;p=postgis Do not manually delete rows from geometry_columns (which is now a view). Closes ticket #1099. git-svn-id: http://svn.osgeo.org/postgis/trunk@7568 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/topology.sql.in.c b/topology/topology.sql.in.c index d7ca21c49..543398d69 100644 --- a/topology/topology.sql.in.c +++ b/topology/topology.sql.in.c @@ -1925,10 +1925,6 @@ BEGIN EXECUTE 'DROP SCHEMA '||quote_ident(atopology)||' CASCADE'; END LOOP; - -- Drop any reference to the topology schema in geometry_columns - DELETE FROM geometry_columns WHERE f_table_schema = atopology; - - RETURN 'Topology ' || quote_literal(atopology) || ' dropped'; END $$