create idx_place_interpolations for import already

It is needed to look up if a node is part of an interpolation.

Fixes #2608.
This commit is contained in:
Sarah Hoffmann
2022-02-18 11:11:22 +01:00
parent cd9b0c9a20
commit 85d65a2fd2
2 changed files with 5 additions and 4 deletions

View File

@@ -49,10 +49,6 @@ CREATE INDEX IF NOT EXISTS idx_postcode_postcode
CREATE UNIQUE INDEX IF NOT EXISTS idx_place_osm_unique
ON place USING btree(osm_id, osm_type, class, type) {{db.tablespace.address_index}};
CREATE INDEX IF NOT EXISTS idx_place_interpolations
ON place USING gist(geometry) {{db.tablespace.address_index}}
WHERE osm_type = 'W' and address ? 'interpolation';
{% endif %}
-- Indices only needed for search.