mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 21:54:10 +03:00
make house number reappear in display name on named POIs
After 6cc6cf950c
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.
This commit is contained in:
parent
f8e1d39208
commit
4e1f245331
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user