X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a16075d34895a947bbcbf60f22dc81df92cf4640..b42939a3249e73027516eb6e79a9f1f8c642ff95:/sql/tables.sql diff --git a/sql/tables.sql b/sql/tables.sql index 428eadc2..ccca8f13 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -41,6 +41,8 @@ GRANT INSERT ON new_query_log TO "{www-user}" ; GRANT UPDATE ON new_query_log TO "{www-user}" ; GRANT SELECT ON new_query_log TO "{www-user}" ; +GRANT SELECT ON TABLE country_name TO "{www-user}"; +GRANT SELECT ON TABLE gb_postcode TO "{www-user}"; drop table IF EXISTS word; CREATE TABLE word ( @@ -169,9 +171,6 @@ CREATE TRIGGER place_before_delete BEFORE DELETE ON place CREATE TRIGGER place_before_insert BEFORE INSERT ON place FOR EACH ROW EXECUTE PROCEDURE place_insert(); -drop index idx_placex_sector; -CREATE INDEX idx_placex_sector ON placex USING BTREE (geometry_sector,rank_address,osm_type,osm_id) {ts:address-index}; - DROP SEQUENCE seq_postcodes; CREATE SEQUENCE seq_postcodes start 1;