X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2dd7f0156a84ef07b808244faa2d42c384e9da32..1020a888346295466acc6cd3c366760f434d3f6c:/sql/functions.sql diff --git a/sql/functions.sql b/sql/functions.sql index 6cc42803..8b1372d4 100644 --- a/sql/functions.sql +++ b/sql/functions.sql @@ -2381,7 +2381,7 @@ BEGIN CASE WHEN class = 'place' and type = 'postcode' THEN hstore('name', postcode) ELSE name END as name, CASE WHEN extratags ? 'place' THEN 'place' ELSE class END as class, CASE WHEN extratags ? 'place' THEN extratags->'place' ELSE type END as type, - admin_level, fromarea, isaddress, + admin_level, fromarea, isaddress and linked_place_id is NULL as isaddress, CASE WHEN address_place_id = for_place_id AND rank_address = 0 THEN 100 WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address, distance,country_code,postcode from place_addressline join placex on (address_place_id = placex.place_id)