From: Sarah Hoffmann Date: Mon, 2 May 2022 09:01:54 +0000 (+0200) Subject: respect exclude_place_ids for housenumber search X-Git-Tag: v4.1.0~53 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/8163723e225e8e4b42df298578f8d4a68668594a respect exclude_place_ids for housenumber search --- diff --git a/lib-php/SearchDescription.php b/lib-php/SearchDescription.php index fbf6b650..65df58ef 100644 --- a/lib-php/SearchDescription.php +++ b/lib-php/SearchDescription.php @@ -642,6 +642,7 @@ class SearchDescription // Housenumbers on streets and places. $sPlacexSql = 'SELECT array_agg(place_id) FROM placex'; $sPlacexSql .= ' WHERE parent_place_id = sin.place_id AND sin.address_rank < 30'; + $sPlacexSql .= $this->oContext->excludeSQL(' AND place_id'); $sPlacexSql .= ' and housenumber ~* E'.$sHouseNumberRegex; // Interpolations on streets and places.