From 62bee4ed3713eda46d9845fb3050f6aef46d7a34 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Thu, 26 Nov 2020 09:18:33 +0100 Subject: [PATCH] docs: add migration for search_name_* tables --- docs/admin/Migration.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/admin/Migration.md b/docs/admin/Migration.md index 66b4c28b..9b6395e6 100644 --- a/docs/admin/Migration.md +++ b/docs/admin/Migration.md @@ -8,6 +8,18 @@ SQL statements should be executed from the PostgreSQL commandline. Execute ## 3.5.0 -> master +### Change of layout of search_name_* tables + +The table need a different index for nearest place lookup. Recreate the +indexs suing the following shell script: + +```bash +for table in `psql -d nominatim -c "SELECT tablename FROM pg_tables WHERE tablename LIKE 'search_name_%'" -tA | grep -v search_name_blank`; +do + psql -d nominatim -c "DROP INDEX idx_${table}_centroid_place; CREATE INDEX idx_${table}_centroid_place ON ${table} USING gist (centroid) WHERE ((address_rank >= 2) AND (address_rank <= 25)); DROP INDEX idx_${table}_centroid_street; CREATE INDEX idx_${table}_centroid_street ON ${table} USING gist (centroid) WHERE ((address_rank >= 26) AND (address_rank <= 27))"; +done +``` + ### Removal of html output The debugging UI is no longer directly provided with Nominatim. Instead we -- 2.45.2