]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove linked places also from the location_area_large tables
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 10 May 2020 11:59:47 +0000 (13:59 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 10 May 2020 11:59:47 +0000 (13:59 +0200)
We don't want linked places to show up in addresses either,
so remove them from the address lookup table.

sql/functions/placex_triggers.sql

index d74ac1c963aaec6e40352975892c9fe33278f3b3..b84a2d6d7879eb57959f8ce73ae61de4709c9fb8 100644 (file)
@@ -661,7 +661,7 @@ BEGIN
                   UPDATE placex SET linked_place_id = NEW.place_id WHERE place_id = linked_node_id;
                   IF NOT %REVERSE-ONLY% THEN
                     DELETE FROM search_name WHERE place_id = linked_node_id;
-                 END IF;
+                  END IF;
                 END LOOP;
               END IF;
           END LOOP;
@@ -811,6 +811,7 @@ BEGIN
     IF NOT %REVERSE-ONLY% THEN
       DELETE FROM search_name WHERE place_id = location.place_id;
     END IF;
+    PERFORM deleteLocationArea(NEW.partition, location.place_id, NEW.rank_search);
 
     SELECT wikipedia, importance
       FROM compute_importance(location.extratags, NEW.country_code,