From 84d41c0763efd30d6ecd2a7e5cae0a6cc49fd930 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Fri, 17 Oct 2003 00:55:05 +0000 Subject: [PATCH] Added some AsText wrappers to results to make results match answers. git-svn-id: http://svn.osgeo.org/postgis/trunk@313 b70326c6-7e19-0410-871a-916f4a2858ee --- examples/ogc_test_suite/2_queries.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/ogc_test_suite/2_queries.sql b/examples/ogc_test_suite/2_queries.sql index 8d4577925..fab86c7fe 100644 --- a/examples/ogc_test_suite/2_queries.sql +++ b/examples/ogc_test_suite/2_queries.sql @@ -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'; -- -- 2.50.1