]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge remote-tracking branch 'upstream/master'
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 23 Apr 2017 20:48:29 +0000 (22:48 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 23 Apr 2017 20:48:29 +0000 (22:48 +0200)
sql/functions.sql

index e6e51a25aac2eea7525c19d75f9e8d274ec623b2..691ba85e39716700e568565d620a98d3e324904f 100644 (file)
@@ -2043,7 +2043,7 @@ BEGIN
       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;