From: Sarah Hoffmann Date: Wed, 28 Feb 2024 17:45:31 +0000 (+0100) Subject: Merge pull request #3350 from lonvia/improve-postcode-handling X-Git-Tag: v4.4.0~4 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/dd2c794de52d4547c405d0dc4b7bafd9c1cffc05?hp=9fa73cfb1528147cc0b59d81b5c0cb1a9ed6789d Merge pull request #3350 from lonvia/improve-postcode-handling Improve handling of postcode areas --- diff --git a/lib-sql/indices.sql b/lib-sql/indices.sql index ed078895..b802a660 100644 --- a/lib-sql/indices.sql +++ b/lib-sql/indices.sql @@ -23,6 +23,10 @@ CREATE INDEX IF NOT EXISTS idx_placex_parent_place_id --- CREATE INDEX IF NOT EXISTS idx_placex_geometry ON placex USING GIST (geometry) {{db.tablespace.search_index}}; +-- Index is needed during import but can be dropped as soon as a full +-- geometry index is in place. The partial index is almost as big as the full +-- index. +DROP INDEX IF EXISTS idx_placex_geometry_lower_rank_ways; --- CREATE INDEX IF NOT EXISTS idx_placex_geometry_reverse_lookupPolygon ON placex USING gist (geometry) {{db.tablespace.search_index}}