]> granicus.if.org Git - postgis/commitdiff
#3236 get rid of STRICT on ST_OrderingEquals -- preventing spatial index from being...
authorRegina Obe <lr@pcorp.us>
Tue, 11 Aug 2015 22:25:15 +0000 (22:25 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 11 Aug 2015 22:25:15 +0000 (22:25 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@13904 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/postgis.sql.in

index 0c2e4935588c2e9195da11cf514270bac8510bf1..5f5778e97f388604ba2ffa53895cf3c74de81474 100644 (file)
@@ -5240,7 +5240,7 @@ CREATE OR REPLACE FUNCTION ST_OrderingEquals(GeometryA geometry, GeometryB geome
        AS $$ 
        SELECT $1 ~= $2 AND _ST_OrderingEquals($1, $2)
        $$      
-       LANGUAGE 'sql' IMMUTABLE STRICT
+       LANGUAGE 'sql' IMMUTABLE; 
        
 -------------------------------------------------------------------------------
 -- SQL/MM - SQL Functions on type ST_Point