]> granicus.if.org Git - postgis/commitdiff
Added transaction begin and end.
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 12 Jun 2003 22:25:04 +0000 (22:25 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 12 Jun 2003 22:25:04 +0000 (22:25 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@276 b70326c6-7e19-0410-871a-916f4a2858ee

regress/isvalid_test
regress/relate_test

index 8b653dd6a0ff9dfbbdb97d04c372e67826d7c064..b4e06e4cca1359a0ec32bc0eb72e82a52f1c437a 100644 (file)
@@ -1,3 +1,5 @@
+BEGIN;
+
 CREATE TABLE "validtest" (
        "g" geometry,
        "result" boolean,
@@ -817,3 +819,4 @@ INSERT INTO "validtest" VALUES ('SRID=-1;MULTIPOLYGON(((240 160,140 220,80 60,22
 INSERT INTO "validtest" VALUES ('SRID=-1;MULTIPOLYGON(((240 160,100 240,80 60,220 40,240 160)),((160 380,100 240,20 380,160 380),(120 340,60 360,80 320,120 340)))','t','Test 751');
 INSERT INTO "validtest" VALUES ('SRID=-1;POLYGON((100 100,1e+15 110,1e+15 100,100 100))','t','Test 92');
 INSERT INTO "validtest" VALUES ('SRID=-1;MULTIPOINT(-1e+24 -1e+24,1e+24 -1e+24,1e+24 1e+24,-1e+24 1e+24,0 0)','t','Test 558');
+COMMIT;
index a2033cf1a9812349f5db4372f14599803ab55c59..bac66ba2e84d1064f44de3187299823e82992a6f 100644 (file)
@@ -1,3 +1,5 @@
+BEGIN;
+
 CREATE TABLE "relate_test" (
        "g1" geometry,
        "g2" geometry,
@@ -560,3 +562,4 @@ INSERT INTO "relate_test" VALUES ('SRID=-1;MULTIPOINT(20 20,80 70,140 120,200 17
 INSERT INTO "relate_test" VALUES ('SRID=-1;MULTIPOINT(80 70,20 20,200 170,140 120)','SRID=-1;MULTIPOINT(140 120,80 70)','0F0FFFFF2');
 INSERT INTO "relate_test" VALUES ('SRID=-1;MULTIPOINT(80 70,20 20,200 170,140 120)','SRID=-1;MULTIPOINT(80 170,140 120,200 80)','0F0FFF0F2');
 INSERT INTO "relate_test" VALUES ('SRID=-1;MULTIPOINT(80 70,20 20,200 170,140 120)','SRID=-1;MULTIPOINT(80 170,140 120,200 80,80 70)','0F0FFF0F2');
+COMMIT;