From: Paul Ramsey Date: Thu, 10 Apr 2003 17:40:44 +0000 (+0000) Subject: Fixed within() test to have right order of arguments. X-Git-Tag: pgis_0_8_0~114 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45a22c2d23d4a15f230e3168143778a0641acb95;p=postgis Fixed within() test to have right order of arguments. git-svn-id: http://svn.osgeo.org/postgis/trunk@268 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/examples/ogc_test_suite/2_queries.sql b/examples/ogc_test_suite/2_queries.sql index 4ee667143..9b2894763 100644 --- a/examples/ogc_test_suite/2_queries.sql +++ b/examples/ogc_test_suite/2_queries.sql @@ -769,7 +769,7 @@ WHERE streams.name = 'Cam Stream' AND lakes.name = 'Blue Lake'; -- --================================ -- -SELECT Within(boundary, footprint) +SELECT Within(footprint, boundary) FROM named_places, buildings WHERE named_places.name = 'Ashton' AND buildings.address = '215 Main Street'; --