Adds postalcode polygon and renames

This commit is contained in:
Guido Fioravantti
2015-11-12 11:20:12 +01:00
parent cb19a8ca08
commit 20cc610da5
7 changed files with 175 additions and 54 deletions

View File

@@ -0,0 +1,9 @@
-- Check that the public function is callable, even with no data
-- It should return NULL
SELECT cdb_geocoder_server.geocode_ip_point(session_user, txid_current(), '0.0.0.0');
-- Insert dummy data into ip_address_locations
INSERT INTO ip_address_locations VALUES ('::ffff:0.0.0.0'::inet, (ST_SetSRID(ST_MakePoint('40.40', '3.71'), 4326)));
-- This should return the polygon inserted above
SELECT cdb_geocoder_server.geocode_ip_point(session_user, txid_current(), '0.0.0.0');