X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8a2e4010257543cee432e0f7c17aa1fded96700a..19e9748874afa4419d89cc36e12613ad57ee867a:/sql/functions.sql diff --git a/sql/functions.sql b/sql/functions.sql index 949e4cae..b086786a 100644 --- a/sql/functions.sql +++ b/sql/functions.sql @@ -2399,7 +2399,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,calculated_country_code,postcode from place_addressline join placex on (address_place_id = placex.place_id)