Skip to content

Commit 2eec133

Browse files
committed
Bugfix update_aerodrome_label_point()
Bug introduced in openmaptiles#944. Missing exclamation mark in not equal operator caused that tags were not updated thus there were missing `name_int`, `name:latin` and `name:nonlatin`.
1 parent 01d53a2 commit 2eec133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layers/aerodrome_label/update_aerodrome_label_point.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $$
2121
SET tags = update_tags(tags, geometry)
2222
WHERE (full_update OR osm_id IN (SELECT osm_id FROM aerodrome_label.osm_ids))
2323
AND COALESCE(tags->'name:latin', tags->'name:nonlatin', tags->'name_int') IS NULL
24-
AND tags = update_tags(tags, geometry);
24+
AND tags != update_tags(tags, geometry);
2525
$$ LANGUAGE SQL;
2626

2727
SELECT update_aerodrome_label_point(true);

0 commit comments

Comments
 (0)