]> git.openstreetmap.org Git - nominatim.git/blob - sql/tiger_import_finish.sql
go through entire member list when checking waterway relations
[nominatim.git] / sql / tiger_import_finish.sql
1 CREATE INDEX idx_location_property_tiger_housenumber_parent_place_id_imp ON location_property_tiger_import (parent_place_id, housenumber);
2 CREATE UNIQUE INDEX idx_location_property_tiger_place_id_imp ON location_property_tiger_import (place_id);
3
4 GRANT SELECT ON location_property_tiger_import TO "www-data";
5
6 DROP TABLE location_property_tiger;
7 ALTER TABLE location_property_tiger_import RENAME TO location_property_tiger;
8
9 ALTER INDEX idx_location_property_tiger_housenumber_parent_place_id_imp RENAME TO idx_location_property_tiger_housenumber_parent_place_id;
10 ALTER INDEX idx_location_property_tiger_place_id_imp RENAME TO idx_location_property_tiger_place_id;
11
12 DROP FUNCTION tigger_create_interpolation (linegeo geometry, in_startnumber integer, in_endnumber integer, interpolationtype text, in_street text, in_isin text, in_postcode text);