2015-11-13 01:45:27 +08:00
|
|
|
-- Mock the server functions
|
2015-11-20 17:51:19 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.geocode_postalcode_polygon(user_id name, user_config JSON, geocoder_config JSON, postal_code text, country_name text)
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-11-20 17:51:19 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.geocode_postalcode_polygon invoked with params (%, %, %, %, %)', user_id, '{"is_organization": false, "entity_name": "test_user"}', '{"street_geocoder_provider": "nokia","nokia_monthly_quota": 100, "nokia_soft_geocoder_limit": false}', postal_code, country_name;
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE 'plpgsql';
|
2015-11-20 17:51:19 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cdb_geocoder_server.geocode_postalcode_point(user_id name, user_config JSON, geocoder_config JSON, postal_code text, country_name text)
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURNS Geometry AS $$
|
|
|
|
BEGIN
|
2015-11-20 17:51:19 +08:00
|
|
|
RAISE NOTICE 'cdb_geocoder_server.geocode_postalcode_point invoked with params (%, %, %, %, %)', user_id, '{"is_organization": false, "entity_name": "test_user"}', '{"street_geocoder_provider": "nokia","nokia_monthly_quota": 100, "nokia_soft_geocoder_limit": false}', postal_code, country_name;
|
2015-11-13 01:45:27 +08:00
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE 'plpgsql';
|
|
|
|
-- Exercise the public and the proxied function
|
|
|
|
SELECT cdb_geocoder_client.geocode_postalcode_polygon('03204', 'Spain');
|
2015-11-20 17:51:19 +08:00
|
|
|
NOTICE: cdb_geocoder_client._geocode_postalcode_polygon(5): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.geocode_postalcode_polygon invoked with params (postgres, {"is_organization": false, "entity_name": "test_user"}, {"street_geocoder_provider": "nokia","nokia_monthly_quota": 100, "nokia_soft_geocoder_limit": false}, 03204, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._geocode_postalcode_polygon(session_user, user_config, geocoder_config, postal_code, country_name)"
|
|
|
|
PL/pgSQL function cdb_geocoder_client.geocode_postalcode_polygon(text,text) line 9 at SQL statement
|
2015-11-13 01:45:27 +08:00
|
|
|
geocode_postalcode_polygon
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
(1 row)
|
|
|
|
|
2015-11-13 20:04:46 +08:00
|
|
|
SELECT cdb_geocoder_client.geocode_postalcode_point('03204', 'Spain');
|
2015-11-20 17:51:19 +08:00
|
|
|
NOTICE: cdb_geocoder_client._geocode_postalcode_point(5): [contrib_regression] REMOTE NOTICE: cdb_geocoder_server.geocode_postalcode_point invoked with params (postgres, {"is_organization": false, "entity_name": "test_user"}, {"street_geocoder_provider": "nokia","nokia_monthly_quota": 100, "nokia_soft_geocoder_limit": false}, 03204, Spain)
|
|
|
|
CONTEXT: SQL statement "SELECT cdb_geocoder_client._geocode_postalcode_point(session_user, user_config, geocoder_config, postal_code, country_name)"
|
|
|
|
PL/pgSQL function cdb_geocoder_client.geocode_postalcode_point(text,text) line 9 at SQL statement
|
2015-11-13 20:04:46 +08:00
|
|
|
geocode_postalcode_point
|
|
|
|
--------------------------
|
2015-11-13 01:45:27 +08:00
|
|
|
|
|
|
|
(1 row)
|
|
|
|
|