kopia lustrzana https://github.com/openmaptiles/openmaptiles
Bugfix update_aerodrome_label_point() (#1051)
Bug introduced in #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`.pull/1054/head
rodzic
b2b8716840
commit
512b3435ad
layers/aerodrome_label
|
@ -21,7 +21,7 @@ $$
|
|||
SET tags = update_tags(tags, geometry)
|
||||
WHERE (full_update OR osm_id IN (SELECT osm_id FROM aerodrome_label.osm_ids))
|
||||
AND COALESCE(tags->'name:latin', tags->'name:nonlatin', tags->'name_int') IS NULL
|
||||
AND tags = update_tags(tags, geometry);
|
||||
AND tags != update_tags(tags, geometry);
|
||||
$$ LANGUAGE SQL;
|
||||
|
||||
SELECT update_aerodrome_label_point(true);
|
||||
|
|
Ładowanie…
Reference in New Issue