mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-07 10:34:08 +00:00
adapt interpolation handling to use separate place_interpolation table
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
--
|
||||
-- This file is part of Nominatim. (https://nominatim.org)
|
||||
--
|
||||
-- Copyright (C) 2025 by the Nominatim developer community.
|
||||
-- Copyright (C) 2026 by the Nominatim developer community.
|
||||
-- For a full list of authors see the git log.
|
||||
|
||||
-- insert creates the location tables, creates location indexes if indexed == true
|
||||
@@ -31,3 +31,8 @@ CREATE TRIGGER location_postcodes_before_delete BEFORE DELETE ON location_postco
|
||||
FOR EACH ROW EXECUTE PROCEDURE postcodes_delete();
|
||||
CREATE TRIGGER location_postcodes_before_insert BEFORE INSERT ON location_postcodes
|
||||
FOR EACH ROW EXECUTE PROCEDURE postcodes_insert();
|
||||
|
||||
CREATE TRIGGER place_interpolation_before_insert BEFORE INSERT ON place_interpolation
|
||||
FOR EACH ROW EXECUTE PROCEDURE place_interpolation_insert();
|
||||
CREATE TRIGGER place_interpolation_before_delete BEFORE DELETE ON place_interpolation
|
||||
FOR EACH ROW EXECUTE PROCEDURE place_interpolation_delete();
|
||||
|
||||
Reference in New Issue
Block a user