X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4342b28882249a6d460bb7f7e6f6708751497058..70f154be8b69d3b57eebd25eff225ee29ccc97ba:/lib-sql/tokenizer/icu_tokenizer_tables.sql diff --git a/lib-sql/tokenizer/icu_tokenizer_tables.sql b/lib-sql/tokenizer/icu_tokenizer_tables.sql index dd3ac477..13b12797 100644 --- a/lib-sql/tokenizer/icu_tokenizer_tables.sql +++ b/lib-sql/tokenizer/icu_tokenizer_tables.sql @@ -15,7 +15,12 @@ CREATE INDEX idx_word_country_names ON word -- Used when inserting new postcodes on updates. CREATE INDEX idx_word_postcodes ON word USING btree((info->>'postcode')) {{db.tablespace.address_index}} - WHERE type = 'P' + WHERE type = 'P'; +-- Used when inserting full words. +CREATE INDEX idx_word_full_word ON word + USING btree((info->>'word')) {{db.tablespace.address_index}} + WHERE type = 'W'; + GRANT SELECT ON word TO "{{config.DATABASE_WEBUSER}}"; DROP SEQUENCE IF EXISTS seq_word;