]> granicus.if.org Git - postgis/commitdiff
Added some AsText wrappers to results to make results match answers.
authorPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 17 Oct 2003 00:55:05 +0000 (00:55 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 17 Oct 2003 00:55:05 +0000 (00:55 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@313 b70326c6-7e19-0410-871a-916f4a2858ee

examples/ogc_test_suite/2_queries.sql

index 8d457792544c417fde7dd074259533435472c351..fab86c7feccc681a4855947b024a670cd11ebb70 100644 (file)
@@ -917,7 +917,7 @@ WHERE streams.name = 'Cam Stream' AND lakes.name = 'Blue Lake';
 --
 --================================
 --
-SELECT Difference(named_places.boundary, forests.boundary)
+SELECT AsText(Difference(named_places.boundary, forests.boundary))
 FROM named_places, forests 
 WHERE named_places.name = 'Ashton' AND forests.name = 'Green Forest';
 --
@@ -931,7 +931,7 @@ WHERE named_places.name = 'Ashton' AND forests.name = 'Green Forest';
 --
 --================================
 --
-SELECT GeomUnion(shore, boundary)
+SELECT AsText(GeomUnion(shore, boundary))
 FROM lakes, named_places 
 WHERE lakes.name = 'Blue Lake' AND named_places.name = 'Goose Island';
 --
@@ -946,7 +946,7 @@ WHERE lakes.name = 'Blue Lake' AND named_places.name = 'Goose Island';
 --
 --================================
 --
-SELECT SymmetricDifference(shore, boundary)
+SELECT AsText(SymmetricDifference(shore, boundary))
 FROM lakes, named_places 
 WHERE lakes.name = 'Blue Lake' AND named_places.name = 'Goose Island';
 --
@@ -984,7 +984,7 @@ WHERE Contains(Buffer(bridges.position, 15.0), buildings.footprint);
 --
 --================================
 --
-SELECT ConvexHull(shore)
+SELECT AsText(ConvexHull(shore))
 FROM lakes
 WHERE lakes.name = 'Blue Lake';
 --