2015-11-24 20:30:18 +08:00
|
|
|
-- Add to the search path the schema
|
2015-11-27 20:20:55 +08:00
|
|
|
SET search_path TO public,cartodb,cdb_geocoder_client;
|
2015-11-13 01:45:27 +08:00
|
|
|
-- Mock the server functions
|
2015-12-03 01:54:49 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_polygon(username text, postal_code text, country_name text)
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-12-03 01:54:49 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params (%, %, %)', username, postal_code, country_name;
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE 'plpgsql';
|
2015-12-03 01:54:49 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_point(username text, postal_code text, country_name text)
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-12-03 01:54:49 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params (%, %, %)', username, postal_code, country_name;
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE 'plpgsql';
|
|
|
|
-- Exercise the public and the proxied function
|
2015-11-24 20:30:18 +08:00
|
|
|
SELECT cdb_geocode_postalcode_polygon('03204', 'Spain');
|
2015-12-03 01:54:49 +08:00
|
|
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params ("test_user", 03204, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_polygon(username, postal_code, country_name)"
|
2015-12-03 02:12:11 +08:00
|
|
|
PL/pgSQL function cdb_geocode_postalcode_polygon(text,text) line 13 at SQL statement
|
2015-11-24 20:30:18 +08:00
|
|
|
cdb_geocode_postalcode_polygon
|
|
|
|
--------------------------------
|
2015-11-13 01:45:27 +08:00
|
|
|
|
|
|
|
(1 row)
|
|
|
|
|
2015-11-24 20:30:18 +08:00
|
|
|
SELECT cdb_geocode_postalcode_point('03204', 'Spain');
|
2015-12-03 01:54:49 +08:00
|
|
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_point(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params ("test_user", 03204, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_point(username, postal_code, country_name)"
|
2015-12-03 02:12:11 +08:00
|
|
|
PL/pgSQL function cdb_geocode_postalcode_point(text,text) line 13 at SQL statement
|
2015-11-24 20:30:18 +08:00
|
|
|
cdb_geocode_postalcode_point
|
|
|
|
------------------------------
|
2015-11-13 01:45:27 +08:00
|
|
|
|
|
|
|
(1 row)
|
|
|
|
|