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 18:03:10 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_polygon(username text, orgname text, postal_code text, country_name text)
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-12-03 18:03:10 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params (%, %, %, %)', username, orgname, postal_code, country_name;
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE 'plpgsql';
|
2015-12-03 18:03:10 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_postalcode_point(username text, orgname text, postal_code text, country_name text)
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-12-03 18:03:10 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params (%, %, %, %)', username, orgname, 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 18:03:10 +08:00
|
|
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_polygon(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_polygon invoked with params ("test_user", <NULL>, 03204, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_polygon(username, orgname, postal_code, country_name)"
|
|
|
|
PL/pgSQL function cdb_geocode_postalcode_polygon(text,text) line 15 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 18:03:10 +08:00
|
|
|
NOTICE: cdb_geocoder_client._cdb_geocode_postalcode_point(4): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_postalcode_point invoked with params ("test_user", <NULL>, 03204, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_postalcode_point(username, orgname, postal_code, country_name)"
|
|
|
|
PL/pgSQL function cdb_geocode_postalcode_point(text,text) line 15 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)
|
|
|
|
|