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.
pull/1308/head^2
Brian Sperlongano 2021-11-18 12:27:19 -05:00 zatwierdzone przez GitHub
rodzic 054d3a7e4d
commit cdff735be1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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 (