]> git.openstreetmap.org Git - nominatim.git/blob - sql/tables.sql
62a4eb36a1398a249809ba1234c3207e8a2b2955
[nominatim.git] / sql / tables.sql
1 drop table import_status;
2 CREATE TABLE import_status (
3   lastimportdate timestamp NOT NULL
4   );
5 GRANT SELECT ON import_status TO "www-data" ;
6
7 drop table 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 --drop table IF EXISTS query_log;
17 CREATE TABLE query_log (
18   starttime timestamp,
19   query text,
20   ipaddress text,
21   endtime timestamp,
22   results integer
23   );
24 CREATE INDEX idx_query_log ON query_log USING BTREE (starttime);
25 GRANT INSERT ON query_log TO "www-data" ;
26
27 CREATE TABLE new_query_log (
28   type text,
29   starttime timestamp,
30   ipaddress text,
31   useragent text,
32   language text,
33   query text,
34   endtime timestamp,
35   results integer,
36   format text,
37   secret text
38   );
39 CREATE INDEX idx_new_query_log_starttime ON new_query_log USING BTREE (starttime);
40 GRANT INSERT ON new_query_log TO "www-data" ;
41 GRANT UPDATE ON new_query_log TO "www-data" ;
42 GRANT SELECT ON new_query_log TO "www-data" ;
43
44 create view vw_search_query_log as SELECT substr(query, 1, 50) AS query, starttime, endtime - starttime AS duration, substr(useragent, 1, 20) as 
45 useragent, language, results, ipaddress FROM new_query_log WHERE type = 'search' ORDER BY starttime DESC;
46
47 --drop table IF EXISTS report_log;
48 CREATE TABLE report_log (
49   starttime timestamp,
50   ipaddress text,
51   query text,
52   description text,
53   email text
54   );
55 GRANT INSERT ON report_log TO "www-data" ;
56
57 drop table IF EXISTS word;
58 CREATE TABLE word (
59   word_id INTEGER,
60   word_token text,
61   word_trigram text,
62   word text,
63   class text,
64   type text,
65   country_code varchar(2),
66   search_name_count INTEGER,
67   operator TEXT
68   );
69 SELECT AddGeometryColumn('word', 'location', 4326, 'GEOMETRY', 2);
70 CREATE INDEX idx_word_word_id on word USING BTREE (word_id);
71 CREATE INDEX idx_word_word_token on word USING BTREE (word_token);
72 CREATE INDEX idx_word_trigram ON word USING gin(word_trigram gin_trgm_ops);
73 GRANT SELECT ON word TO "www-data" ;
74 DROP SEQUENCE seq_word;
75 CREATE SEQUENCE seq_word start 1;
76
77 drop table IF EXISTS location_area CASCADE;
78 CREATE TABLE location_area (
79   partition varchar(10),
80   place_id INTEGER,
81   country_code VARCHAR(2), 
82   keywords INTEGER[],
83   rank_search INTEGER NOT NULL,
84   rank_address INTEGER NOT NULL,
85   isguess BOOL
86   );
87 SELECT AddGeometryColumn('location_area', 'centroid', 4326, 'POINT', 2);
88 SELECT AddGeometryColumn('location_area', 'geometry', 4326, 'GEOMETRY', 2);
89
90 CREATE TABLE location_area_large () INHERITS (location_area);
91 CREATE TABLE location_area_roadnear () INHERITS (location_area);
92 CREATE TABLE location_area_roadfar () INHERITS (location_area);
93
94 drop table IF EXISTS search_name;
95 CREATE TABLE search_name (
96   place_id INTEGER,
97   search_rank integer,
98   address_rank integer,
99   country_code varchar(2),
100   name_vector integer[],
101   nameaddress_vector integer[]
102   );
103 CREATE INDEX search_name_name_vector_idx ON search_name USING GIN (name_vector gin__int_ops);
104 CREATE INDEX searchnameplacesearch_search_nameaddress_vector_idx ON search_name USING GIN (nameaddress_vector gin__int_ops);
105 SELECT AddGeometryColumn('search_name', 'centroid', 4326, 'GEOMETRY', 2);
106 CREATE INDEX idx_search_name_centroid ON search_name USING GIST (centroid);
107 CREATE INDEX idx_search_name_place_id ON search_name USING BTREE (place_id);
108
109 drop table IF EXISTS place_addressline;
110 CREATE TABLE place_addressline (
111   place_id INTEGER,
112   address_place_id INTEGER,
113   fromarea boolean,
114   isaddress boolean,
115   distance float,
116   cached_rank_address integer
117   );
118 CREATE INDEX idx_place_addressline_place_id on place_addressline USING BTREE (place_id);
119 CREATE INDEX idx_place_addressline_address_place_id on place_addressline USING BTREE (address_place_id);
120
121 drop table IF EXISTS place_boundingbox CASCADE;
122 CREATE TABLE place_boundingbox (
123   place_id INTEGER,
124   minlat float,
125   maxlat float,
126   minlon float,
127   maxlon float,
128   numfeatures integer,
129   area float
130   );
131 CREATE INDEX idx_place_boundingbox_place_id on place_boundingbox USING BTREE (place_id);
132 SELECT AddGeometryColumn('place_boundingbox', 'outline', 4326, 'GEOMETRY', 2);
133 CREATE INDEX idx_place_boundingbox_outline ON place_boundingbox USING GIST (outline);
134 GRANT SELECT on place_boundingbox to "www-data" ;
135 GRANT INSERT on place_boundingbox to "www-data" ;
136
137 drop table IF EXISTS reverse_cache;
138 CREATE TABLE reverse_cache (
139   latlonzoomid integer,
140   country_code varchar(2),
141   place_id INTEGER
142   );
143 GRANT SELECT on reverse_cache to "www-data" ;
144 GRANT INSERT on reverse_cache to "www-data" ;
145 CREATE INDEX idx_reverse_cache_latlonzoomid ON reverse_cache USING BTREE (latlonzoomid);
146
147 drop table country;
148 CREATE TABLE country (
149   country_code varchar(2),
150   country_name hstore,
151   country_default_language_code varchar(2)
152   );
153 SELECT AddGeometryColumn('country', 'geometry', 4326, 'POLYGON', 2);
154 insert into country select iso3166::varchar(2), 'name:en'->cntry_name, null, 
155   ST_Transform(geometryn(the_geom, generate_series(1, numgeometries(the_geom))), 4326) from worldboundaries;
156 CREATE INDEX idx_country_country_code ON country USING BTREE (country_code);
157 CREATE INDEX idx_country_geometry ON country USING GIST (geometry);
158
159 drop table placex;
160 CREATE TABLE placex (
161   place_id INTEGER NOT NULL,
162   partition varchar(10),
163   osm_type char(1),
164   osm_id INTEGER,
165   class TEXT NOT NULL,
166   type TEXT NOT NULL,
167   name HSTORE,
168   admin_level INTEGER,
169   housenumber TEXT,
170   street TEXT,
171   isin TEXT,
172   postcode TEXT,
173   country_code varchar(2),
174   extratags HSTORE,
175   street_place_id INTEGER,
176   rank_address INTEGER,
177   rank_search INTEGER,
178   indexed_status INTEGER,
179   indexed_date TIMESTAMP,
180   geometry_sector INTEGER
181   );
182 SELECT AddGeometryColumn('placex', 'geometry', 4326, 'GEOMETRY', 2);
183 CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id);
184 CREATE INDEX idx_placex_osmid ON placex USING BTREE (osm_type, osm_id);
185 CREATE INDEX idx_placex_rank_search ON placex USING BTREE (rank_search);
186 CREATE INDEX idx_placex_rank_address ON placex USING BTREE (rank_address);
187 CREATE INDEX idx_placex_geometry ON placex USING GIST (geometry);
188
189 --CREATE INDEX idx_placex_indexed ON placex USING BTREE (indexed);
190
191 CREATE INDEX idx_placex_pending ON placex USING BTREE (rank_search) where indexed_status > 0;
192 CREATE INDEX idx_placex_pendingsector ON placex USING BTREE (rank_search,geometry_sector) where indexed_status > 0;
193
194 --CREATE INDEX idx_placex_pendingbylatlon ON placex USING BTREE (geometry_index(geometry_sector,indexed,name),rank_search)  where geometry_index(geometry_sector,indexed,name) IS NOT NULL;
195
196 CREATE INDEX idx_placex_street_place_id ON placex USING BTREE (street_place_id) where street_place_id IS NOT NULL;
197 CREATE INDEX idx_placex_interpolation ON placex USING BTREE (geometry_sector) where indexed_status > 0 and class='place' and type='houses';
198
199 CREATE INDEX idx_placex_sector ON placex USING BTREE (geometry_sector,rank_address,osm_type,osm_id);
200 CLUSTER placex USING idx_placex_sector;
201
202 DROP SEQUENCE seq_place;
203 CREATE SEQUENCE seq_place start 1;
204 GRANT SELECT on placex to "www-data" ;
205 GRANT UPDATE ON placex to "www-data" ;
206 GRANT SELECT ON search_name to "www-data" ;
207 GRANT DELETE on search_name to "www-data" ;
208 GRANT INSERT on search_name to "www-data" ;
209 GRANT SELECT on place_addressline to "www-data" ;
210 GRANT INSERT ON place_addressline to "www-data" ;
211 GRANT DELETE on place_addressline to "www-data" ;
212 GRANT SELECT ON seq_word to "www-data" ;
213 GRANT UPDATE ON seq_word to "www-data" ;
214 GRANT INSERT ON word to "www-data" ;
215 GRANT SELECT ON planet_osm_ways to "www-data" ;
216 GRANT SELECT ON planet_osm_rels to "www-data" ;
217 GRANT SELECT on location_area to "www-data" ;
218 GRANT SELECT on country to "www-data" ;
219
220 -- insert creates the location tagbles, creates location indexes if indexed == true
221 CREATE TRIGGER placex_before_insert BEFORE INSERT ON placex
222     FOR EACH ROW EXECUTE PROCEDURE placex_insert();
223
224 -- update insert creates the location tables
225 CREATE TRIGGER placex_before_update BEFORE UPDATE ON placex
226     FOR EACH ROW EXECUTE PROCEDURE placex_update();
227
228 -- diff update triggers
229 CREATE TRIGGER placex_before_delete AFTER DELETE ON placex
230     FOR EACH ROW EXECUTE PROCEDURE placex_delete();
231 CREATE TRIGGER place_before_delete BEFORE DELETE ON place
232     FOR EACH ROW EXECUTE PROCEDURE place_delete();
233 CREATE TRIGGER place_before_insert BEFORE INSERT ON place
234     FOR EACH ROW EXECUTE PROCEDURE place_insert();
235
236 alter table placex add column geometry_sector INTEGER;
237 alter table placex add column indexed_status INTEGER;
238 alter table placex add column indexed_date TIMESTAMP;
239
240 update placex set geometry_sector = geometry_sector(geometry);
241 drop index idx_placex_pendingbylatlon;
242 drop index idx_placex_interpolation;
243 drop index idx_placex_sector;
244 CREATE INDEX idx_placex_pendingbylatlon ON placex USING BTREE (geometry_index(geometry_sector,indexed,name),rank_search) 
245   where geometry_index(geometry_sector,indexed,name) IS NOT NULL;
246 CREATE INDEX idx_placex_interpolation ON placex USING BTREE (geometry_sector) where indexed = false and class='place' and type='houses';
247 CREATE INDEX idx_placex_sector ON placex USING BTREE (geometry_sector,rank_address,osm_type,osm_id);