mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 06:22:08 +03:00
5d98c09ee9
Avoids creating the search_name table. Useful when only /reverse is used or the content is directly exported to photon. Fixes #939.
7 lines
458 B
SQL
7 lines
458 B
SQL
-- Indices used for /search API.
|
|
-- These indices are created only after the indexing process is done.
|
|
|
|
CREATE INDEX idx_search_name_nameaddress_vector ON search_name USING GIN (nameaddress_vector) WITH (fastupdate = off) {ts:search-index};
|
|
CREATE INDEX idx_search_name_name_vector ON search_name USING GIN (name_vector) WITH (fastupdate = off) {ts:search-index};
|
|
CREATE INDEX idx_search_name_centroid ON search_name USING GIST (centroid) {ts:search-index};
|