- -- Remove old placex entry if the type changed to postcode.
- IF existingplacex.type IS NOT NULL AND existingplacex.type != 'postcode' THEN
- DELETE FROM placex where osm_type = NEW.osm_type and osm_id = NEW.osm_id;
- END IF;
+ -- Remove old placex entry.
+ DELETE FROM placex where osm_type = NEW.osm_type and osm_id = NEW.osm_id;