]> granicus.if.org Git - postgis/commitdiff
Do not manually delete rows from geometry_columns (which is now a view). Closes ticke...
authorSandro Santilli <strk@keybit.net>
Mon, 4 Jul 2011 09:00:48 +0000 (09:00 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 4 Jul 2011 09:00:48 +0000 (09:00 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7568 b70326c6-7e19-0410-871a-916f4a2858ee

topology/topology.sql.in.c

index d7ca21c491260d08830fa15ddb345dc170f23923..543398d692cdddfe2e6b9e7f46c00cbbf347a8c9 100644 (file)
@@ -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
 $$