mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
Merge pull request #3349 from lonvia/remove-way-geometry-table-after-import
Drop lower-rank-ways index after import
This commit is contained in:
@@ -23,6 +23,10 @@ CREATE INDEX IF NOT EXISTS idx_placex_parent_place_id
|
|||||||
---
|
---
|
||||||
CREATE INDEX IF NOT EXISTS idx_placex_geometry ON placex
|
CREATE INDEX IF NOT EXISTS idx_placex_geometry ON placex
|
||||||
USING GIST (geometry) {{db.tablespace.search_index}};
|
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
|
CREATE INDEX IF NOT EXISTS idx_placex_geometry_reverse_lookupPolygon
|
||||||
ON placex USING gist (geometry) {{db.tablespace.search_index}}
|
ON placex USING gist (geometry) {{db.tablespace.search_index}}
|
||||||
|
|||||||
Reference in New Issue
Block a user