]> git.openstreetmap.org Git - nominatim.git/blob - sql/tables.sql
Merge pull request #425 from lonvia/disable-aux-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 drop table IF EXISTS search_name;
79 CREATE TABLE search_name (
80   place_id BIGINT,
81   search_rank integer,
82   address_rank integer,
83   importance FLOAT,
84   country_code varchar(2),
85   name_vector integer[],
86   nameaddress_vector integer[]
87   ) {ts:search-data};
88 SELECT AddGeometryColumn('search_name', 'centroid', 4326, 'GEOMETRY', 2);
89 CREATE INDEX idx_search_name_place_id ON search_name USING BTREE (place_id) {ts:search-index};
90
91 drop table IF EXISTS place_addressline;
92 CREATE TABLE place_addressline (
93   place_id BIGINT,
94   address_place_id BIGINT,
95   fromarea boolean,
96   isaddress boolean,
97   distance float,
98   cached_rank_address integer
99   ) {ts:search-data};
100 CREATE INDEX idx_place_addressline_place_id on place_addressline USING BTREE (place_id) {ts:search-index};
101
102 drop table if exists placex;
103 CREATE TABLE placex (
104   place_id BIGINT NOT NULL,
105   partition integer,
106   LIKE place INCLUDING CONSTRAINTS,
107   parent_place_id BIGINT,
108   linked_place_id BIGINT,
109   rank_address INTEGER,
110   rank_search INTEGER,
111   importance FLOAT,
112   indexed_status INTEGER,
113   indexed_date TIMESTAMP,
114   wikipedia TEXT, -- calculated wikipedia article name (language:title)
115   geometry_sector INTEGER,
116   calculated_country_code varchar(2)
117   ) {ts:search-data};
118 SELECT AddGeometryColumn('placex', 'centroid', 4326, 'GEOMETRY', 2);
119 CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id) {ts:search-index};
120 CREATE INDEX idx_placex_osmid ON placex USING BTREE (osm_type, osm_id) {ts:search-index};
121 CREATE INDEX idx_placex_linked_place_id ON placex USING BTREE (linked_place_id) {ts:address-index};
122 CREATE INDEX idx_placex_rank_search ON placex USING BTREE (rank_search, geometry_sector) {ts:address-index};
123 CREATE INDEX idx_placex_geometry ON placex USING GIST (geometry) {ts:search-index};
124 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;
125
126 DROP SEQUENCE IF EXISTS seq_place;
127 CREATE SEQUENCE seq_place start 1;
128 GRANT SELECT on placex to "{www-user}" ;
129 GRANT SELECT ON search_name to "{www-user}" ;
130 GRANT SELECT on place_addressline to "{www-user}" ;
131 GRANT SELECT ON seq_word to "{www-user}" ;
132 GRANT SELECT ON planet_osm_ways to "{www-user}" ;
133 GRANT SELECT ON planet_osm_rels to "{www-user}" ;
134 GRANT SELECT on location_area to "{www-user}" ;
135
136 -- insert creates the location tagbles, creates location indexes if indexed == true
137 CREATE TRIGGER placex_before_insert BEFORE INSERT ON placex
138     FOR EACH ROW EXECUTE PROCEDURE placex_insert();
139
140 -- update insert creates the location tables
141 CREATE TRIGGER placex_before_update BEFORE UPDATE ON placex
142     FOR EACH ROW EXECUTE PROCEDURE placex_update();
143
144 -- diff update triggers
145 CREATE TRIGGER placex_before_delete AFTER DELETE ON placex
146     FOR EACH ROW EXECUTE PROCEDURE placex_delete();
147 CREATE TRIGGER place_before_delete BEFORE DELETE ON place
148     FOR EACH ROW EXECUTE PROCEDURE place_delete();
149 CREATE TRIGGER place_before_insert BEFORE INSERT ON place
150     FOR EACH ROW EXECUTE PROCEDURE place_insert();
151
152 DROP SEQUENCE seq_postcodes;
153 CREATE SEQUENCE seq_postcodes start 1;
154
155 drop table import_polygon_error;
156 CREATE TABLE import_polygon_error (
157   osm_type char(1),
158   osm_id INTEGER,
159   class TEXT NOT NULL,
160   type TEXT NOT NULL,
161   name HSTORE,
162   country_code varchar(2),
163   updated timestamp,
164   errormessage text
165   );
166 SELECT AddGeometryColumn('import_polygon_error', 'prevgeometry', 4326, 'GEOMETRY', 2);
167 SELECT AddGeometryColumn('import_polygon_error', 'newgeometry', 4326, 'GEOMETRY', 2);
168 CREATE INDEX idx_import_polygon_error_osmid ON import_polygon_error USING BTREE (osm_type, osm_id);
169 GRANT SELECT ON import_polygon_error TO "{www-user}";
170
171 drop table import_polygon_delete;
172 CREATE TABLE import_polygon_delete (
173   osm_type char(1),
174   osm_id INTEGER,
175   class TEXT NOT NULL,
176   type TEXT NOT NULL
177   );
178 CREATE INDEX idx_import_polygon_delete_osmid ON import_polygon_delete USING BTREE (osm_type, osm_id);
179 GRANT SELECT ON import_polygon_delete TO "{www-user}";
180
181 drop sequence file;
182 CREATE SEQUENCE file start 1;
183
184 -- null table so it won't error
185 -- deliberately no drop - importing the table is expensive and static, if it is already there better to avoid removing it
186 CREATE TABLE wikipedia_article (
187     language text NOT NULL,
188     title text NOT NULL,
189     langcount integer,
190     othercount integer,
191     totalcount integer,
192     lat double precision,
193     lon double precision,
194     importance double precision,
195     osm_type character(1),
196     osm_id bigint
197 );
198 ALTER TABLE ONLY wikipedia_article ADD CONSTRAINT wikipedia_article_pkey PRIMARY KEY (language, title);
199 CREATE INDEX idx_wikipedia_article_osm_id ON wikipedia_article USING btree (osm_type, osm_id);
200
201 CREATE TABLE wikipedia_redirect (
202     language text,
203     from_title text,
204     to_title text
205 );
206 ALTER TABLE ONLY wikipedia_redirect ADD CONSTRAINT wikipedia_redirect_pkey PRIMARY KEY (language, from_title);
207