mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 06:22:08 +03:00
7 lines
468 B
MySQL
7 lines
468 B
MySQL
|
CREATE TABLE location_property_aux () INHERITS (location_property);
|
||
|
CREATE INDEX idx_location_property_aux_place_id ON location_property_aux USING BTREE (place_id);
|
||
|
CREATE INDEX idx_location_property_aux_parent_place_id ON location_property_aux USING BTREE (parent_place_id);
|
||
|
CREATE INDEX idx_location_property_aux_housenumber_parent_place_id ON location_property_aux USING BTREE (parent_place_id, housenumber);
|
||
|
GRANT SELECT ON location_property_aux TO "{www-user}";
|
||
|
|