From: Chris Hodgson Date: Tue, 28 May 2002 17:59:47 +0000 (+0000) Subject: - updated the ~ and @ operator definitions in postgis_gist_72.sql.in so that ~ is... X-Git-Tag: pgis_0_7_2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=317345830f6482aa5a2e5ee5e322152dbcf93c22;p=postgis - updated the ~ and @ operator definitions in postgis_gist_72.sql.in so that ~ is contains and @ is contained git-svn-id: http://svn.osgeo.org/postgis/trunk@166 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis_gist_72.sql.in b/postgis_gist_72.sql.in index 0d7d347e0..5ce89617d 100644 --- a/postgis_gist_72.sql.in +++ b/postgis_gist_72.sql.in @@ -75,14 +75,14 @@ CREATE OPERATOR ~= ( CREATE OPERATOR @ ( - LEFTARG = GEOMETRY, RIGHTARG = GEOMETRY, PROCEDURE = geometry_contain, + LEFTARG = GEOMETRY, RIGHTARG = GEOMETRY, PROCEDURE = geometry_contained, COMMUTATOR = '@', RESTRICT = contsel, JOIN = contjoinsel ); CREATE OPERATOR ~ ( - LEFTARG = GEOMETRY, RIGHTARG = GEOMETRY, PROCEDURE = geometry_contained, + LEFTARG = GEOMETRY, RIGHTARG = GEOMETRY, PROCEDURE = geometry_contain, COMMUTATOR = '@', RESTRICT = contsel, JOIN = contjoinsel );