From d7bb449e74defea958f40d425ae6890cf0b08172 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 28 Feb 2024 14:35:56 +0100 Subject: [PATCH] drop lower-rank-ways index after import The index becomes quite big and is only needed during import because the full geometry import does not exist yet. --- lib-sql/indices.sql | 4 ++++ 1 file changed, 4 insertions(+) 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}} -- 2.45.1