]> granicus.if.org Git - postgis/commitdiff
Fixed within() test to have right order of arguments.
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 10 Apr 2003 17:40:44 +0000 (17:40 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 10 Apr 2003 17:40:44 +0000 (17:40 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@268 b70326c6-7e19-0410-871a-916f4a2858ee

examples/ogc_test_suite/2_queries.sql

index 4ee667143943c1da69ad727b1d352baabc084191..9b28947637adf08b00b3d337719a71cded0d270d 100644 (file)
@@ -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';
 --