]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tables.sql
c254e2d43b848d0fe6bd43090f165ce6b317062c
[nominatim.git] / lib-sql / tables.sql
1 drop table if exists import_status;
2 CREATE TABLE import_status (
3   lastimportdate timestamp with time zone NOT NULL,
4   sequence_id integer,
5   indexed boolean
6   );
7 GRANT SELECT ON import_status TO "{{config.DATABASE_WEBUSER}}" ;
8
9 drop table if exists import_osmosis_log;
10 CREATE TABLE import_osmosis_log (
11   batchend timestamp,
12   batchseq integer,
13   batchsize bigint,
14   starttime timestamp,
15   endtime timestamp,
16   event text
17   );
18
19 CREATE TABLE new_query_log (
20   type text,
21   starttime timestamp,
22   ipaddress text,
23   useragent text,
24   language text,
25   query text,
26   searchterm text,
27   endtime timestamp,
28   results integer,
29   format text,
30   secret text
31   );
32 CREATE INDEX idx_new_query_log_starttime ON new_query_log USING BTREE (starttime);
33 GRANT INSERT ON new_query_log TO "{{config.DATABASE_WEBUSER}}" ;
34 GRANT UPDATE ON new_query_log TO "{{config.DATABASE_WEBUSER}}" ;
35 GRANT SELECT ON new_query_log TO "{{config.DATABASE_WEBUSER}}" ;
36
37 GRANT SELECT ON TABLE country_name TO "{{config.DATABASE_WEBUSER}}";
38
39 DROP TABLE IF EXISTS nominatim_properties;
40 CREATE TABLE nominatim_properties (
41     property TEXT,
42     value TEXT
43 );
44 GRANT SELECT ON TABLE nominatim_properties TO "{{config.DATABASE_WEBUSER}}";
45
46 drop table IF EXISTS location_area CASCADE;
47 CREATE TABLE location_area (
48   place_id BIGINT,
49   keywords INTEGER[],
50   partition SMALLINT,
51   rank_search SMALLINT NOT NULL,
52   rank_address SMALLINT NOT NULL,
53   country_code VARCHAR(2),
54   isguess BOOL,
55   postcode TEXT,
56   centroid GEOMETRY(Point, 4326),
57   geometry GEOMETRY(Geometry, 4326)
58   );
59
60 CREATE TABLE location_area_large () INHERITS (location_area);
61
62 DROP TABLE IF EXISTS location_area_country;
63 CREATE TABLE location_area_country (
64   place_id BIGINT,
65   country_code varchar(2),
66   geometry GEOMETRY(Geometry, 4326)
67   ) {{db.tablespace.address_data}};
68 CREATE INDEX idx_location_area_country_geometry ON location_area_country USING GIST (geometry) {{db.tablespace.address_index}};
69
70
71 CREATE TABLE location_property_tiger (
72   place_id BIGINT,
73   parent_place_id BIGINT,
74   startnumber INTEGER,
75   endnumber INTEGER,
76   partition SMALLINT,
77   linegeo GEOMETRY,
78   interpolationtype TEXT,
79   postcode TEXT);
80 GRANT SELECT ON location_property_tiger TO "{{config.DATABASE_WEBUSER}}";
81
82 drop table if exists location_property_osmline;
83 CREATE TABLE location_property_osmline (
84     place_id BIGINT NOT NULL,
85     osm_id BIGINT,
86     parent_place_id BIGINT,
87     geometry_sector INTEGER,
88     indexed_date TIMESTAMP,
89     startnumber INTEGER,
90     endnumber INTEGER,
91     partition SMALLINT,
92     indexed_status SMALLINT,
93     linegeo GEOMETRY,
94     interpolationtype TEXT,
95     address HSTORE,
96     token_info JSONB, -- custom column for tokenizer use only
97     postcode TEXT,
98     country_code VARCHAR(2)
99   ){{db.tablespace.search_data}};
100 CREATE UNIQUE INDEX idx_osmline_place_id ON location_property_osmline USING BTREE (place_id) {{db.tablespace.search_index}};
101 CREATE INDEX idx_osmline_geometry_sector ON location_property_osmline USING BTREE (geometry_sector) {{db.tablespace.address_index}};
102 CREATE INDEX idx_osmline_linegeo ON location_property_osmline USING GIST (linegeo) {{db.tablespace.search_index}};
103 GRANT SELECT ON location_property_osmline TO "{{config.DATABASE_WEBUSER}}";
104
105 drop table IF EXISTS search_name;
106 {% if not db.reverse_only %}
107 CREATE TABLE search_name (
108   place_id BIGINT,
109   importance FLOAT,
110   search_rank SMALLINT,
111   address_rank SMALLINT,
112   name_vector integer[],
113   nameaddress_vector integer[],
114   country_code varchar(2),
115   centroid GEOMETRY(Geometry, 4326)
116   ) {{db.tablespace.search_data}};
117 CREATE INDEX idx_search_name_place_id ON search_name USING BTREE (place_id) {{db.tablespace.search_index}};
118 GRANT SELECT ON search_name to "{{config.DATABASE_WEBUSER}}" ;
119 {% endif %}
120
121 drop table IF EXISTS place_addressline;
122 CREATE TABLE place_addressline (
123   place_id BIGINT,
124   address_place_id BIGINT,
125   distance FLOAT,
126   cached_rank_address SMALLINT,
127   fromarea boolean,
128   isaddress boolean
129   ) {{db.tablespace.search_data}};
130 CREATE INDEX idx_place_addressline_place_id on place_addressline USING BTREE (place_id) {{db.tablespace.search_index}};
131
132 drop table if exists placex;
133 CREATE TABLE placex (
134   place_id BIGINT NOT NULL,
135   parent_place_id BIGINT,
136   linked_place_id BIGINT,
137   importance FLOAT,
138   indexed_date TIMESTAMP,
139   geometry_sector INTEGER,
140   rank_address SMALLINT,
141   rank_search SMALLINT,
142   partition SMALLINT,
143   indexed_status SMALLINT,
144   LIKE place INCLUDING CONSTRAINTS,
145   wikipedia TEXT, -- calculated wikipedia article name (language:title)
146   token_info JSONB, -- custom column for tokenizer use only
147   country_code varchar(2),
148   housenumber TEXT,
149   postcode TEXT,
150   centroid GEOMETRY(Geometry, 4326)
151   ) {{db.tablespace.search_data}};
152 CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id) {{db.tablespace.search_index}};
153 CREATE INDEX idx_placex_osmid ON placex USING BTREE (osm_type, osm_id) {{db.tablespace.search_index}};
154 CREATE INDEX idx_placex_linked_place_id ON placex USING BTREE (linked_place_id) {{db.tablespace.address_index}} WHERE linked_place_id IS NOT NULL;
155 CREATE INDEX idx_placex_rank_search ON placex USING BTREE (rank_search, geometry_sector) {{db.tablespace.address_index}};
156 CREATE INDEX idx_placex_geometry ON placex USING GIST (geometry) {{db.tablespace.search_index}};
157 CREATE INDEX idx_placex_geometry_placenode ON placex
158   USING GIST (geometry) {{db.tablespace.search_index}}
159   WHERE osm_type = 'N' and rank_search < 26
160         and class = 'place' and type != 'postcode' and linked_place_id is null;
161 CREATE INDEX idx_placex_wikidata on placex USING BTREE ((extratags -> 'wikidata')) {{db.tablespace.address_index}} WHERE extratags ? 'wikidata' and class = 'place' and osm_type = 'N' and rank_search < 26;
162
163 DROP SEQUENCE IF EXISTS seq_place;
164 CREATE SEQUENCE seq_place start 1;
165 GRANT SELECT on placex to "{{config.DATABASE_WEBUSER}}" ;
166 GRANT SELECT on place_addressline to "{{config.DATABASE_WEBUSER}}" ;
167 GRANT SELECT ON planet_osm_ways to "{{config.DATABASE_WEBUSER}}" ;
168 GRANT SELECT ON planet_osm_rels to "{{config.DATABASE_WEBUSER}}" ;
169 GRANT SELECT on location_area to "{{config.DATABASE_WEBUSER}}" ;
170
171 -- Table for synthetic postcodes.
172 DROP TABLE IF EXISTS location_postcode;
173 CREATE TABLE location_postcode (
174   place_id BIGINT,
175   parent_place_id BIGINT,
176   rank_search SMALLINT,
177   rank_address SMALLINT,
178   indexed_status SMALLINT,
179   indexed_date TIMESTAMP,
180   country_code varchar(2),
181   postcode TEXT,
182   geometry GEOMETRY(Geometry, 4326)
183   );
184 CREATE UNIQUE INDEX idx_postcode_id ON location_postcode USING BTREE (place_id) {{db.tablespace.search_index}};
185 CREATE INDEX idx_postcode_geometry ON location_postcode USING GIST (geometry) {{db.tablespace.address_index}};
186 GRANT SELECT ON location_postcode TO "{{config.DATABASE_WEBUSER}}" ;
187
188 DROP TABLE IF EXISTS import_polygon_error;
189 CREATE TABLE import_polygon_error (
190   osm_id BIGINT,
191   osm_type CHAR(1),
192   class TEXT NOT NULL,
193   type TEXT NOT NULL,
194   name HSTORE,
195   country_code varchar(2),
196   updated timestamp,
197   errormessage text,
198   prevgeometry GEOMETRY(Geometry, 4326),
199   newgeometry GEOMETRY(Geometry, 4326)
200   );
201 CREATE INDEX idx_import_polygon_error_osmid ON import_polygon_error USING BTREE (osm_type, osm_id);
202 GRANT SELECT ON import_polygon_error TO "{{config.DATABASE_WEBUSER}}";
203
204 DROP TABLE IF EXISTS import_polygon_delete;
205 CREATE TABLE import_polygon_delete (
206   osm_id BIGINT,
207   osm_type CHAR(1),
208   class TEXT NOT NULL,
209   type TEXT NOT NULL
210   );
211 CREATE INDEX idx_import_polygon_delete_osmid ON import_polygon_delete USING BTREE (osm_type, osm_id);
212 GRANT SELECT ON import_polygon_delete TO "{{config.DATABASE_WEBUSER}}";
213
214 DROP SEQUENCE IF EXISTS file;
215 CREATE SEQUENCE file start 1;
216
217 -- null table so it won't error
218 -- deliberately no drop - importing the table is expensive and static, if it is already there better to avoid removing it
219 CREATE TABLE wikipedia_article (
220     language text NOT NULL,
221     title text NOT NULL,
222     langcount integer,
223     othercount integer,
224     totalcount integer,
225     lat double precision,
226     lon double precision,
227     importance double precision,
228     osm_type character(1),
229     osm_id bigint,
230     wd_page_title text,
231     instance_of text
232 );
233 ALTER TABLE ONLY wikipedia_article ADD CONSTRAINT wikipedia_article_pkey PRIMARY KEY (language, title);
234 CREATE INDEX idx_wikipedia_article_osm_id ON wikipedia_article USING btree (osm_type, osm_id);
235
236 CREATE TABLE wikipedia_redirect (
237     language text,
238     from_title text,
239     to_title text
240 );
241 ALTER TABLE ONLY wikipedia_redirect ADD CONSTRAINT wikipedia_redirect_pkey PRIMARY KEY (language, from_title);
242
243 -- osm2pgsql does not create indexes on the middle tables for Nominatim
244 -- Add one for lookup of associated street relations.
245 CREATE INDEX planet_osm_rels_parts_associated_idx ON planet_osm_rels USING gin(parts) WHERE tags @> ARRAY['associatedStreet'];
246
247 GRANT SELECT ON table country_osm_grid to "{{config.DATABASE_WEBUSER}}";