Files
Nominatim/lib-sql/tokenizer/legacy_tokenizer_indices.sql
Sarah Hoffmann 85797acf1e ICU: add an index over word_ids
Needed for keyword lookup in the details response.
2021-10-25 21:33:27 +02:00

4 lines
140 B
SQL

-- Required for details lookup.
CREATE INDEX IF NOT EXISTS idx_word_word_id
ON word USING BTREE (word_id) {{db.tablespace.search_index}};