Remove unneeded toll code (#1262)
This PR removes unneeded `CASE` clauses which converts `toll` tags to booleans. However, the `toll` tag is already mapped as a boolean by imposm, therefore this processing can be simplified.
This commit is contained in:
committed by
GitHub
parent
4d6945b935
commit
aaa68048d9
@@ -340,7 +340,7 @@ FROM (
|
||||
public_transport,
|
||||
service_value(service) AS service,
|
||||
CASE WHEN access IN ('private', 'no') THEN 'no' END AS access,
|
||||
CASE WHEN toll='yes' THEN true ELSE NULL::boolean END AS toll,
|
||||
toll,
|
||||
is_bridge,
|
||||
is_tunnel,
|
||||
is_ford,
|
||||
|
||||
Reference in New Issue
Block a user