From: Sarah Hoffmann Date: Thu, 21 Feb 2019 22:26:31 +0000 (+0100) Subject: add osm_id index for osmline table X-Git-Tag: v3.3.0~28 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/189da9afb3659e194b545dd5a6d9de1b1033c72d add osm_id index for osmline table Needed when deleting address interpolation. --- diff --git a/sql/indices.src.sql b/sql/indices.src.sql index dd16affb..b661cf4a 100644 --- a/sql/indices.src.sql +++ b/sql/indices.src.sql @@ -32,6 +32,7 @@ GRANT SELECT ON table country_osm_grid to "{www-user}"; CREATE INDEX idx_location_area_country_place_id ON location_area_country USING BTREE (place_id) {ts:address-index}; CREATE INDEX idx_osmline_parent_place_id ON location_property_osmline USING BTREE (parent_place_id) {ts:search-index}; +CREATE INDEX idx_osmline_parent_osm_id ON location_property_osmline USING BTREE (osm_id) {ts:search-index}; DROP INDEX IF EXISTS place_id_idx; CREATE UNIQUE INDEX idx_place_osm_unique on place using btree(osm_id,osm_type,class,type) {ts:address-index};