]> git.openstreetmap.org Git - nominatim.git/blob - sql/tables.sql
introduce address column for place tables
[nominatim.git] / sql / tables.sql
1 drop table if exists import_status;
2 CREATE TABLE import_status (
3   lastimportdate timestamp NOT NULL
4   );
5 GRANT SELECT ON import_status TO "{www-user}" ;
6
7 drop table if exists import_osmosis_log;
8 CREATE TABLE import_osmosis_log (
9   batchend timestamp,
10   batchsize integer,
11   starttime timestamp,
12   endtime timestamp,
13   event text
14   );
15
16 CREATE TABLE new_query_log (
17   type text,
18   starttime timestamp,
19   ipaddress text,
20   useragent text,
21   language text,
22   query text,
23   searchterm text,
24   endtime timestamp,
25   results integer,
26   format text,
27   secret text
28   );
29 CREATE INDEX idx_new_query_log_starttime ON new_query_log USING BTREE (starttime);
30 GRANT INSERT ON new_query_log TO "{www-user}" ;
31 GRANT UPDATE ON new_query_log TO "{www-user}" ;
32 GRANT SELECT ON new_query_log TO "{www-user}" ;
33
34 GRANT SELECT ON TABLE country_name TO "{www-user}";
35 GRANT SELECT ON TABLE gb_postcode TO "{www-user}";
36
37 drop table IF EXISTS word;
38 CREATE TABLE word (
39   word_id INTEGER,
40   word_token text,
41   word text,
42   class text,
43   type text,
44   country_code varchar(2),
45   search_name_count INTEGER,
46   operator TEXT
47   ) {ts:search-data};
48 CREATE INDEX idx_word_word_token on word USING BTREE (word_token) {ts:search-index};
49 GRANT SELECT ON word TO "{www-user}" ;
50 DROP SEQUENCE IF EXISTS seq_word;
51 CREATE SEQUENCE seq_word start 1;
52
53 drop table IF EXISTS location_area CASCADE;
54 CREATE TABLE location_area (
55   partition integer,
56   place_id BIGINT,
57   country_code VARCHAR(2),
58   keywords INTEGER[],
59   rank_search INTEGER NOT NULL,
60   rank_address INTEGER NOT NULL,
61   isguess BOOL
62   );
63 SELECT AddGeometryColumn('location_area', 'centroid', 4326, 'POINT', 2);
64 SELECT AddGeometryColumn('location_area', 'geometry', 4326, 'GEOMETRY', 2);
65
66 CREATE TABLE location_area_large () INHERITS (location_area);
67
68 drop table IF EXISTS location_property CASCADE;
69 CREATE TABLE location_property (
70   place_id BIGINT,
71   partition integer,
72   parent_place_id BIGINT,
73   housenumber TEXT,
74   postcode TEXT
75   );
76 SELECT AddGeometryColumn('location_property', 'centroid', 4326, 'POINT', 2);
77
78 CREATE TABLE location_property_aux () INHERITS (location_property);
79 CREATE INDEX idx_location_property_aux_place_id ON location_property_aux USING BTREE (place_id);
80 CREATE INDEX idx_location_property_aux_parent_place_id ON location_property_aux USING BTREE (parent_place_id);
81 CREATE INDEX idx_location_property_aux_housenumber_parent_place_id ON location_property_aux USING BTREE (parent_place_id, housenumber);
82 GRANT SELECT ON location_property_aux TO "{www-user}";
83
84 CREATE TABLE location_property_tiger (linegeo GEOMETRY, place_id BIGINT, partition INTEGER, parent_place_id BIGINT, startnumber INTEGER, endnumber INTEGER, interpolationtype TEXT, postcode TEXT);
85 GRANT SELECT ON location_property_tiger TO "{www-user}";
86
87 drop table if exists location_property_osmline;
88 CREATE TABLE location_property_osmline (
89     linegeo GEOMETRY,
90     place_id BIGINT NOT NULL,
91     partition INTEGER,
92     osm_id BIGINT,
93     parent_place_id BIGINT,
94     startnumber INTEGER,
95     endnumber INTEGER,
96     interpolationtype TEXT,
97     address HSTORE,
98     street TEXT,
99     addr_place TEXT,
100     postcode TEXT,
101     country_code VARCHAR(2),
102     geometry_sector INTEGER,
103     indexed_status INTEGER,
104     indexed_date TIMESTAMP){ts:search-data};
105 CREATE UNIQUE INDEX idx_osmline_place_id ON location_property_osmline USING BTREE (place_id) {ts:search-index};
106 CREATE INDEX idx_osmline_geometry_sector ON location_property_osmline USING BTREE (geometry_sector) {ts:address-index};
107 CREATE INDEX idx_osmline_linegeo ON location_property_osmline USING GIST (linegeo) {ts:search-index};
108 GRANT SELECT ON location_property_osmline TO "{www-user}";
109
110 drop table IF EXISTS search_name;
111 CREATE TABLE search_name (
112   place_id BIGINT,
113   search_rank integer,
114   address_rank integer,
115   importance FLOAT,
116   country_code varchar(2),
117   name_vector integer[],
118   nameaddress_vector integer[]
119   ) {ts:search-data};
120 SELECT AddGeometryColumn('search_name', 'centroid', 4326, 'GEOMETRY', 2);
121 CREATE INDEX idx_search_name_place_id ON search_name USING BTREE (place_id) {ts:search-index};
122
123 drop table IF EXISTS place_addressline;
124 CREATE TABLE place_addressline (
125   place_id BIGINT,
126   address_place_id BIGINT,
127   fromarea boolean,
128   isaddress boolean,
129   distance float,
130   cached_rank_address integer
131   ) {ts:search-data};
132 CREATE INDEX idx_place_addressline_place_id on place_addressline USING BTREE (place_id) {ts:search-index};
133
134 drop table if exists placex;
135 CREATE TABLE placex (
136   place_id BIGINT NOT NULL,
137   partition integer,
138   LIKE place INCLUDING CONSTRAINTS,
139   parent_place_id BIGINT,
140   linked_place_id BIGINT,
141   rank_address INTEGER,
142   rank_search INTEGER,
143   importance FLOAT,
144   indexed_status INTEGER,
145   indexed_date TIMESTAMP,
146   wikipedia TEXT, -- calculated wikipedia article name (language:title)
147   geometry_sector INTEGER,
148   country_code varchar(2),
149   street TEXT,
150   addr_place TEXT,
151   housenumber TEXT,
152   postcode TEXT
153   ) {ts:search-data};
154 SELECT AddGeometryColumn('placex', 'centroid', 4326, 'GEOMETRY', 2);
155 CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id) {ts:search-index};
156 CREATE INDEX idx_placex_osmid ON placex USING BTREE (osm_type, osm_id) {ts:search-index};
157 CREATE INDEX idx_placex_linked_place_id ON placex USING BTREE (linked_place_id) {ts:address-index};
158 CREATE INDEX idx_placex_rank_search ON placex USING BTREE (rank_search, geometry_sector) {ts:address-index};
159 CREATE INDEX idx_placex_geometry ON placex USING GIST (geometry) {ts:search-index};
160 CREATE INDEX idx_placex_adminname on placex USING BTREE (make_standard_name(name->'name'),rank_search) {ts:address-index} WHERE osm_type='N' and rank_search < 26;
161
162 DROP SEQUENCE IF EXISTS seq_place;
163 CREATE SEQUENCE seq_place start 1;
164 GRANT SELECT on placex to "{www-user}" ;
165 GRANT SELECT ON search_name to "{www-user}" ;
166 GRANT SELECT on place_addressline to "{www-user}" ;
167 GRANT SELECT ON seq_word to "{www-user}" ;
168 GRANT SELECT ON planet_osm_ways to "{www-user}" ;
169 GRANT SELECT ON planet_osm_rels to "{www-user}" ;
170 GRANT SELECT on location_area to "{www-user}" ;
171
172 -- insert creates the location tables, creates location indexes if indexed == true
173 CREATE TRIGGER placex_before_insert BEFORE INSERT ON placex
174     FOR EACH ROW EXECUTE PROCEDURE placex_insert();
175 CREATE TRIGGER osmline_before_insert BEFORE INSERT ON location_property_osmline
176     FOR EACH ROW EXECUTE PROCEDURE osmline_insert();
177
178 -- update insert creates the location tables
179 CREATE TRIGGER placex_before_update BEFORE UPDATE ON placex
180     FOR EACH ROW EXECUTE PROCEDURE placex_update();
181 CREATE TRIGGER osmline_before_update BEFORE UPDATE ON location_property_osmline
182     FOR EACH ROW EXECUTE PROCEDURE osmline_update();
183
184 -- diff update triggers
185 CREATE TRIGGER placex_before_delete AFTER DELETE ON placex
186     FOR EACH ROW EXECUTE PROCEDURE placex_delete();
187 CREATE TRIGGER place_before_delete BEFORE DELETE ON place
188     FOR EACH ROW EXECUTE PROCEDURE place_delete();
189 CREATE TRIGGER place_before_insert BEFORE INSERT ON place
190     FOR EACH ROW EXECUTE PROCEDURE place_insert();
191
192 DROP SEQUENCE IF EXISTS seq_postcodes;
193 CREATE SEQUENCE seq_postcodes start 1;
194
195 DROP TABLE IF EXISTS import_polygon_error;
196 CREATE TABLE import_polygon_error (
197   osm_type char(1),
198   osm_id INTEGER,
199   class TEXT NOT NULL,
200   type TEXT NOT NULL,
201   name HSTORE,
202   country_code varchar(2),
203   updated timestamp,
204   errormessage text
205   );
206 SELECT AddGeometryColumn('import_polygon_error', 'prevgeometry', 4326, 'GEOMETRY', 2);
207 SELECT AddGeometryColumn('import_polygon_error', 'newgeometry', 4326, 'GEOMETRY', 2);
208 CREATE INDEX idx_import_polygon_error_osmid ON import_polygon_error USING BTREE (osm_type, osm_id);
209 GRANT SELECT ON import_polygon_error TO "{www-user}";
210
211 DROP TABLE IF EXISTS import_polygon_delete;
212 CREATE TABLE import_polygon_delete (
213   osm_type char(1),
214   osm_id INTEGER,
215   class TEXT NOT NULL,
216   type TEXT NOT NULL
217   );
218 CREATE INDEX idx_import_polygon_delete_osmid ON import_polygon_delete USING BTREE (osm_type, osm_id);
219 GRANT SELECT ON import_polygon_delete TO "{www-user}";
220
221 DROP SEQUENCE IF EXISTS file;
222 CREATE SEQUENCE file start 1;
223
224 -- null table so it won't error
225 -- deliberately no drop - importing the table is expensive and static, if it is already there better to avoid removing it
226 CREATE TABLE wikipedia_article (
227     language text NOT NULL,
228     title text NOT NULL,
229     langcount integer,
230     othercount integer,
231     totalcount integer,
232     lat double precision,
233     lon double precision,
234     importance double precision,
235     osm_type character(1),
236     osm_id bigint
237 );
238 ALTER TABLE ONLY wikipedia_article ADD CONSTRAINT wikipedia_article_pkey PRIMARY KEY (language, title);
239 CREATE INDEX idx_wikipedia_article_osm_id ON wikipedia_article USING btree (osm_type, osm_id);
240
241 CREATE TABLE wikipedia_redirect (
242     language text,
243     from_title text,
244     to_title text
245 );
246 ALTER TABLE ONLY wikipedia_redirect ADD CONSTRAINT wikipedia_redirect_pkey PRIMARY KEY (language, from_title);
247