Project

General

Profile

« Previous | Next » 

Revision 13906

fix: schemas/util.sql: OPERATOR ~(geocoord, postgis.geometry): renamed to because this is not an approximate comparison for geometry

View differences:

util.sql
4884 4884

  
4885 4885

  
4886 4886
--
4887
-- Name: @; Type: OPERATOR; Schema: util; Owner: -
4888
--
4889

  
4890
CREATE OPERATOR @ (
4891
    PROCEDURE = contained_within__no_dateline,
4892
    LEFTARG = geocoord,
4893
    RIGHTARG = postgis.geometry
4894
);
4895

  
4896

  
4897
--
4887 4898
-- Name: ||%; Type: OPERATOR; Schema: util; Owner: -
4888 4899
--
4889 4900

  
......
4946 4957
);
4947 4958

  
4948 4959

  
4949
--
4950
-- Name: ~@; Type: OPERATOR; Schema: util; Owner: -
4951
--
4952

  
4953
CREATE OPERATOR ~@ (
4954
    PROCEDURE = contained_within__no_dateline,
4955
    LEFTARG = geocoord,
4956
    RIGHTARG = postgis.geometry
4957
);
4958

  
4959

  
4960 4960
SET search_path = pg_catalog;
4961 4961

  
4962 4962
--

Also available in: Unified diff