Revision 13818
Added by Aaron Marcuse-Kubitza over 10 years ago
trunk/schemas/vegbien.my.sql | ||
---|---|---|
1360 | 1360 |
|
1361 | 1361 |
|
1362 | 1362 |
-- |
1363 |
-- Name: lat_long_in_new_world(double, double); Type: FUNCTION; Schema: public; Owner: - |
|
1364 |
-- |
|
1365 |
|
|
1366 |
|
|
1367 |
|
|
1368 |
|
|
1369 |
-- |
|
1370 |
-- Name: FUNCTION lat_long_in_new_world(latitude_deg double, longitude_deg double); Type: COMMENT; Schema: public; Owner: - |
|
1371 |
-- |
|
1372 |
|
|
1373 |
|
|
1374 |
|
|
1375 |
|
|
1376 |
-- |
|
1363 | 1377 |
-- Name: location__pull_forward_from_parent(); Type: FUNCTION; Schema: public; Owner: - |
1364 | 1378 |
-- |
1365 | 1379 |
|
trunk/schemas/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 |
|
trunk/schemas/vegbien.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
schemas/public_.sql: added lat_long_in_new_world() wrapper around util.lat_long_in_new_world()