Project

General

Profile

« Previous | Next » 

Revision 13818

schemas/public_.sql: added lat_long_in_new_world() wrapper around util.lat_long_in_new_world()

View differences:

public_.sql
2182 2182

  
2183 2183

  
2184 2184
--
2185
-- Name: lat_long_in_new_world(double precision, double precision); Type: FUNCTION; Schema: public; Owner: -
2186
--
2187

  
2188
CREATE FUNCTION lat_long_in_new_world(latitude_deg double precision, longitude_deg double precision) RETURNS boolean
2189
    LANGUAGE sql IMMUTABLE
2190
    AS $_$
2191
SELECT util.lat_long_in_new_world($1, $2)
2192
$_$;
2193

  
2194

  
2195
--
2196
-- Name: FUNCTION lat_long_in_new_world(latitude_deg double precision, longitude_deg double precision); Type: COMMENT; Schema: public; Owner: -
2197
--
2198

  
2199
COMMENT ON FUNCTION lat_long_in_new_world(latitude_deg double precision, longitude_deg double precision) IS '
2200
wrapper that prevents views from getting dropped when the util schema is reinstalled
2201
';
2202

  
2203

  
2204
--
2185 2205
-- Name: location__pull_forward_from_parent(); Type: FUNCTION; Schema: public; Owner: -
2186 2206
--
2187 2207

  

Also available in: Unified diff