Skip to content

Commit

Permalink
remove landuses if the name is removed
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Feb 9, 2014
1 parent 8c2765a commit 0bdcaa0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sql/functions.sql
Expand Up @@ -2045,6 +2045,8 @@ BEGIN

-- Just block these - lots and pointless
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;
END IF;

Expand Down

0 comments on commit 0bdcaa0

Please sign in to comment.