From 189da9afb3659e194b545dd5a6d9de1b1033c72d Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Thu, 21 Feb 2019 23:26:31 +0100 Subject: [PATCH] add osm_id index for osmline table Needed when deleting address interpolation. --- sql/indices.src.sql | 1 + 1 file changed, 1 insertion(+) 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}; -- 2.39.5