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-12 01:52:48 +08:00
|
|
|
-- Mock the server function
|
2015-12-03 18:03:10 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.cdb_geocode_admin0_polygon(username text, orgname text, country_name text)
|
2015-11-12 01:52:48 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-12-03 18:03:10 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.cdb_geocode_admin0_polygon invoked with params (%, %, %)', username, orgname, country_name;
|
2015-11-12 01:52:48 +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_admin0_polygon('Spain');
|
2015-12-03 18:03:10 +08:00
|
|
|
NOTICE: cdb_geocoder_client._cdb_geocode_admin0_polygon(3): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.cdb_geocode_admin0_polygon invoked with params ("test_user", <NULL>, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._cdb_geocode_admin0_polygon(username, orgname, country_name)"
|
|
|
|
PL/pgSQL function cdb_geocode_admin0_polygon(text) line 15 at SQL statement
|
2015-11-24 20:30:18 +08:00
|
|
|
cdb_geocode_admin0_polygon
|
|
|
|
----------------------------
|
2015-11-12 01:52:48 +08:00
|
|
|
|
|
|
|
(1 row)
|
|
|
|
|