Revert bulk geocoding column parameters order and test_city_column_geocoding

This commit is contained in:
Juan Ignacio Sánchez Lara
2018-06-26 13:59:44 +02:00
parent c2a207b1cd
commit d5e47e39ab
3 changed files with 24 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
CREATE OR REPLACE FUNCTION cdb_dataservices_client.cdb_bulk_geocode_street_point (query text,
country_column text, state_column text, city_column text, street_column text, batch_size integer DEFAULT 100)
street_column text, city_column text default null, state_column text default null, country_column text default null, batch_size integer DEFAULT 100)
RETURNS SETOF cdb_dataservices_client.geocoding AS $$
DECLARE
query_row_count integer;