mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
remove landuses if the name is removed
Fixes https://trac.openstreetmap.org/ticket/5104
This commit is contained in:
@@ -2045,6 +2045,8 @@ BEGIN
|
|||||||
|
|
||||||
-- Just block these - lots and pointless
|
-- Just block these - lots and pointless
|
||||||
IF NEW.class in ('landuse','natural') and NEW.name is null THEN
|
IF NEW.class in ('landuse','natural') and NEW.name is null THEN
|
||||||
|
-- if the name tag was removed, older versions might still be lurking in the place table
|
||||||
|
DELETE FROM place where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type;
|
||||||
RETURN null;
|
RETURN null;
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user