From: Sandro Santilli Date: Fri, 2 Jan 2015 17:11:25 +0000 (+0000) Subject: Drop topology schema after topology extension test (#2138) X-Git-Tag: 2.2.0rc1~713 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e49b11651ef1cd96632a240886f2e95011d4dd0;p=postgis Drop topology schema after topology extension test (#2138) git-svn-id: http://svn.osgeo.org/postgis/trunk@13171 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/run_test.pl b/regress/run_test.pl index 00865a1ef..d0caba34e 100755 --- a/regress/run_test.pl +++ b/regress/run_test.pl @@ -1348,7 +1348,10 @@ sub drop_spatial_extensions if ( $OPT_WITH_TOPO ) { - $cmd = "psql $psql_opts -c \"DROP EXTENSION postgis_topology\" $DB >> $REGRESS_LOG 2>&1"; + # NOTE: "manually" dropping topology schema as EXTENSION does not + # take care of that itself, see + # http://trac.osgeo.org/postgis/ticket/2138 + $cmd = "psql $psql_opts -c \"DROP EXTENSION postgis_topology; DROP SCHEMA topology;\" $DB >> $REGRESS_LOG 2>&1"; $rv = system($cmd); $ok = 0 if $rv; }