]> granicus.if.org Git - postgis/commitdiff
[run_test.pl] some debug lines added
authorSandro Santilli <strk@kbt.io>
Mon, 15 Oct 2018 06:54:14 +0000 (06:54 +0000)
committerSandro Santilli <strk@kbt.io>
Mon, 15 Oct 2018 06:54:14 +0000 (06:54 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@16898 b70326c6-7e19-0410-871a-916f4a2858ee

regress/run_test.pl

index 6ead3054516e6dc3476c37fefd1d88961a1e08d0..ac821cbbb936dcdfd832fbe859a3639f156ebeb6 100755 (executable)
@@ -1519,6 +1519,8 @@ sub upgrade_spatial_extensions
       if ( $OPT_UPGRADE_FROM
            && ! has_split_raster_ext($OPT_UPGRADE_FROM) )
       {
+        print "Packaging PostGIS Raster in '${DB}' for later drop using: ${sql}\n" ;
+
         $sql = "CREATE EXTENSION postgis_raster VERSION '${nextver}' FROM unpackaged";
         $cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
         $rv = system($cmd);
@@ -1527,6 +1529,8 @@ sub upgrade_spatial_extensions
           die;
         }
 
+        print "Dropping PostGIS Raster in '${DB}' using: ${sql}\n" ;
+
         $sql = "DROP EXTENSION postgis_raster";
         $cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
         $rv = system($cmd);