From: Sarah Hoffmann Date: Sun, 23 Apr 2017 20:48:29 +0000 (+0200) Subject: Merge remote-tracking branch 'upstream/master' X-Git-Tag: deploy~394 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/a59474c573cdc91102cf9ef343ce0e979fe4dc9d?hp=-c Merge remote-tracking branch 'upstream/master' --- a59474c573cdc91102cf9ef343ce0e979fe4dc9d diff --combined sql/functions.sql index e6e51a25,3966e822..691ba85e --- a/sql/functions.sql +++ b/sql/functions.sql @@@ -2043,7 -2043,7 +2043,7 @@@ BEGI AND st_area(NEW.geometry) < st_area(existing.geometry)*0.5 THEN INSERT INTO import_polygon_error (osm_type, osm_id, class, type, name, country_code, updated, errormessage, prevgeometry, newgeometry) - VALUES (NEW.osm_type, NEW.osm_id, NEW.class, NEW.type, NEW.name, NEW.country_code, now(), + VALUES (NEW.osm_type, NEW.osm_id, NEW.class, NEW.type, NEW.name, NEW.address->'country', now(), 'Area reduced from '||st_area(existing.geometry)||' to '||st_area(NEW.geometry), existing.geometry, NEW.geometry); RETURN null; END IF; @@@ -2374,7 -2374,7 +2374,7 @@@ BEGI CASE WHEN class = 'place' and type = 'postcode' THEN hstore('name', postcode) ELSE name END as name, CASE WHEN extratags ? 'place' THEN 'place' ELSE class END as class, CASE WHEN extratags ? 'place' THEN extratags->'place' ELSE type END as type, - admin_level, fromarea, isaddress, + admin_level, fromarea, isaddress and linked_place_id is NULL as isaddress, CASE WHEN address_place_id = for_place_id AND rank_address = 0 THEN 100 WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address, distance,country_code,postcode from place_addressline join placex on (address_place_id = placex.place_id)