X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/00ca493f33e9f2fd3b0be79cbbb3e814a5891a07..8081896bc0e3933c7c8a497a012c674c125de66e:/sql/functions/address_lookup.sql diff --git a/sql/functions/address_lookup.sql b/sql/functions/address_lookup.sql index 8436fdb1..dd096728 100644 --- a/sql/functions/address_lookup.sql +++ b/sql/functions/address_lookup.sql @@ -205,7 +205,7 @@ BEGIN CASE WHEN extratags ? 'place' or extratags ? 'linked_place' THEN 'place' ELSE class END as class, coalesce(extratags->'place', extratags->'linked_place', type) as type, - admin_level, fromarea, isaddress, + admin_level, fromarea, isaddress and linked_place_id is NULL as isaddress, CASE 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)