X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/3884eb7ca8e76c1a05afca16fc0cba8312102c64..ad1d429de64ac037470f92e0492211a41bd2c613:/sql/tables.sql diff --git a/sql/tables.sql b/sql/tables.sql index b5b59c16..244f2036 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -55,7 +55,6 @@ drop table IF EXISTS word; CREATE TABLE word ( word_id INTEGER, word_token text, - word_trigram text, word text, class text, type text, @@ -63,9 +62,7 @@ CREATE TABLE word ( search_name_count INTEGER, operator TEXT ) TABLESPACE ssd; -SELECT AddGeometryColumn('word', 'location', 4326, 'GEOMETRY', 2); CREATE INDEX idx_word_word_token on word USING BTREE (word_token) TABLESPACE ssd; ---CREATE INDEX idx_word_trigram ON word USING gin(word_trigram gin_trgm_ops) WITH (fastupdate = off); GRANT SELECT ON word TO "www-data" ; DROP SEQUENCE seq_word; CREATE SEQUENCE seq_word start 1; @@ -109,8 +106,8 @@ CREATE INDEX idx_location_property_tiger_parent_place_id ON location_property_ti CREATE INDEX idx_location_property_tiger_housenumber_parent_place_id ON location_property_tiger USING BTREE (parent_place_id, housenumber); GRANT SELECT ON location_property_tiger TO "www-data"; -drop table IF EXISTS search_name_blank CASCADE; -CREATE TABLE search_name_blank ( +drop table IF EXISTS search_name; +CREATE TABLE search_name ( place_id BIGINT, search_rank integer, address_rank integer, @@ -119,10 +116,7 @@ CREATE TABLE search_name_blank ( name_vector integer[], nameaddress_vector integer[] ); -SELECT AddGeometryColumn('search_name_blank', 'centroid', 4326, 'GEOMETRY', 2); - -drop table IF EXISTS search_name; -CREATE TABLE search_name () INHERITS (search_name_blank) TABLESPACE ssd; +SELECT AddGeometryColumn('search_name', 'centroid', 4326, 'GEOMETRY', 2); CREATE INDEX idx_search_name_place_id ON search_name USING BTREE (place_id) TABLESPACE ssd; drop table IF EXISTS place_addressline;