X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/92e2f5ca8e270b4a236afac7242bc1e7fbf35c52..a234d606c9dcd76db1d69909bb78940d3dbcd862:/lib-sql/indices.sql?ds=sidebyside 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}}