Remove blank name tags (#1307)

This PR performs the same fix on the park layer that #1268 applied to the waterway layer.  It removes blank name, name_en, and name_de from the tiles.
This commit is contained in:
Brian Sperlongano 2021-11-18 12:27:19 -05:00 committed by GitHub
parent 054d3a7e4d
commit cdff735be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,9 @@ $$
SELECT osm_id, SELECT osm_id,
geometry, geometry,
class, class,
name, NULLIF(name, '') AS name,
name_en, NULLIF(name_en, '') AS name_en,
name_de, NULLIF(name_de, '') AS name_de,
tags, tags,
rank rank
FROM ( FROM (