]> git.openstreetmap.org Git - nominatim.git/commitdiff
add osm_id index for osmline table
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 21 Feb 2019 22:26:31 +0000 (23:26 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 21 Feb 2019 22:26:31 +0000 (23:26 +0100)
Needed when deleting address interpolation.

sql/indices.src.sql

index dd16affb97531305492bc9ca46bfed9dd58deb8e..b661cf4a6d3fe4aa66de5810afb18ff43d7c2317 100644 (file)
@@ -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};