X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f5718ed909f1ff93d238f2c3fac2429a420efbfa..c61b5219f9eeb48b09d5e74e1f5afc5a955682b9:/sql/functions/address_lookup.sql diff --git a/sql/functions/address_lookup.sql b/sql/functions/address_lookup.sql index 585c22c8..dd096728 100644 --- a/sql/functions/address_lookup.sql +++ b/sql/functions/address_lookup.sql @@ -202,8 +202,9 @@ BEGIN FOR location IN SELECT placex.place_id, osm_type, osm_id, name, - CASE WHEN extratags ? 'place' THEN 'place' ELSE class END as class, - CASE WHEN extratags ? 'place' THEN extratags->'place' ELSE type END as type, + 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 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