]> git.openstreetmap.org Git - nominatim.git/commitdiff
make house number reappear in display name on named POIs
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 30 Jul 2020 21:39:55 +0000 (23:39 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 30 Jul 2020 21:39:55 +0000 (23:39 +0200)
After 6cc6cf950c3c08103e6159a079c85b5a4f1c09fa names and house numbers
of POIS got mingled into a single item when creating the display name.
Add the house number as extra information without place_id to avoid
later mangling.

sql/functions/address_lookup.sql

index 55fa23f277c175085d4befa6b117386578e40cd7..42c015bfd28d3d1fedb77e907740cab9ccf7d867 100644 (file)
@@ -272,7 +272,7 @@ BEGIN
   END IF;
 
   IF searchhousenumber IS NOT NULL THEN
-    location := ROW(in_place_id, null, null, hstore('ref', searchhousenumber),
+    location := ROW(null, null, null, hstore('ref', searchhousenumber),
                     'place', 'house_number', null, null, true, true, 28, 0)::addressline;
     RETURN NEXT location;
   END IF;