Fix quota check

This commit is contained in:
Juan Ignacio Sánchez Lara 2018-06-27 19:07:19 +02:00
parent 8fe9903e7a
commit 379257b4b4

View File

@ -24,7 +24,7 @@ BEGIN
RAISE DEBUG 'cdb_bulk_geocode_street_point --> query_row_count: %; query: %; country: %; state: %; city: %; street: %',
query_row_count, query, country_column, state_column, city_column, street_column;
SELECT cdb_dataservices_client.cdb_enough_quota('hires_geocoder', query_row_count) INTO enough_quota;
IF enough_quota IS NOT NULL AND enough_quota THEN
IF enough_quota IS NOT NULL AND NOT enough_quota THEN
RAISE EXCEPTION 'Remaining quota: %. Estimated cost: %', remaining_quota, query_row_count;
END IF;