]> granicus.if.org Git - postgis/commitdiff
Use BEGIN-ROLLBACK instead of RESET
authorRaúl Marín Rodríguez <rmrodriguez@carto.com>
Fri, 18 Oct 2019 12:18:06 +0000 (12:18 +0000)
committerRaúl Marín Rodríguez <rmrodriguez@carto.com>
Fri, 18 Oct 2019 12:18:06 +0000 (12:18 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@17955 b70326c6-7e19-0410-871a-916f4a2858ee

regress/core/dump.sql
regress/core/isvaliddetail.sql

index 14cbcfd744e0ec9ebeb7c1d69263483ab00e5cf2..ec55eb8a7e9823bf7bff86b2c955463421fc9a08 100644 (file)
@@ -180,6 +180,7 @@ GEOMETRYCOLLECTION (
 ');
 
 -- Check that it works without the extension schema being available
+BEGIN;
 SET search_path TO pg_catalog;
 WITH data AS
 (
@@ -188,4 +189,4 @@ WITH data AS
 SELECT 't12',
        :schema ST_AsText((public.ST_Dump(geom)).geom),
        :schema ST_AsText((public.ST_DumpRings(geom)).geom) FROM data;
-RESET search_path;
+ROLLBACK;
index 3e13f0b03f97f8413fe0f51a52eef25bcf1971d3..627b15a3807183a11ab9199ac086b5f6c4d30dc4 100644 (file)
@@ -49,11 +49,12 @@ select '5r', ST_IsValidReason(
 'POLYGON ((70 250, 40 500, 100 400, 70 250, 80 350, 60 350, 70 250))' , 1);
 
 -- Check that it works without the extension schema being available
+BEGIN;
 SET search_path TO pg_catalog;
 select 7, valid, reason, :schema st_astext(location) FROM (
   SELECT (:schema ST_IsValidDetail(
     'POLYGON ((70 250, 70 500, 80 400, 40 400, 70 250))':: :schema geometry
   )).*
 ) foo;
-RESET search_path;
+ROLLBACK;