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

View File

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