]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tokenizer/legacy_tokenizer_tables.sql
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib-sql / tokenizer / legacy_tokenizer_tables.sql
1 DROP TABLE IF EXISTS word;
2 CREATE TABLE word (
3   word_id INTEGER,
4   word_token text NOT NULL,
5   word text,
6   class text,
7   type text,
8   country_code varchar(2),
9   search_name_count INTEGER,
10   operator TEXT
11 ) {{db.tablespace.search_data}};
12
13 CREATE INDEX idx_word_word_token ON word
14     USING BTREE (word_token) {{db.tablespace.search_index}};
15 CREATE INDEX idx_word_word ON word
16     USING BTREE (word) {{db.tablespace.search_index}} WHERE word is not null;
17 GRANT SELECT ON word TO "{{config.DATABASE_WEBUSER}}";
18
19 DROP SEQUENCE IF EXISTS seq_word;
20 CREATE SEQUENCE seq_word start 1;
21 GRANT SELECT ON seq_word to "{{config.DATABASE_WEBUSER}}";