mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
correctly set from area column in place_addressline
This was always set to true which brings us to the question if it is even still needed.
This commit is contained in:
@@ -360,7 +360,7 @@ BEGIN
|
|||||||
|
|
||||||
INSERT INTO place_addressline (place_id, address_place_id, fromarea,
|
INSERT INTO place_addressline (place_id, address_place_id, fromarea,
|
||||||
isaddress, distance, cached_rank_address)
|
isaddress, distance, cached_rank_address)
|
||||||
VALUES (obj_place_id, location.place_id, true,
|
VALUES (obj_place_id, location.place_id, not location.isguess,
|
||||||
location_isaddress, location.distance, location.rank_address);
|
location_isaddress, location.distance, location.rank_address);
|
||||||
END LOOP;
|
END LOOP;
|
||||||
END;
|
END;
|
||||||
|
|||||||
Reference in New Issue
Block a user