X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b610118a88489c11249e9c0d30b252d3d98bd287..c3940466b817a4c10a956f61c43d6bee3214dd40:/sql/functions.sql diff --git a/sql/functions.sql b/sql/functions.sql index 820bdbf8..97baf52b 100644 --- a/sql/functions.sql +++ b/sql/functions.sql @@ -1757,7 +1757,7 @@ BEGIN END IF; -- make sure all names are in the word table - IF NEW.admin_level = 2 AND NEW.class = 'boundary' AND NEW.type = 'administrative' AND NEW.country_code IS NOT NULL THEN + IF NEW.admin_level = 2 AND NEW.class = 'boundary' AND NEW.type = 'administrative' AND NEW.country_code IS NOT NULL AND NEW.osm_type = 'R' THEN perform create_country(NEW.name, lower(NEW.country_code)); --DEBUG: RAISE WARNING 'Country names updated'; END IF;