make sure that linked places are within a boundary

This is a regression from previous code refactoring.

Fixes #1684.
This commit is contained in:
Sarah Hoffmann 2020-02-18 22:46:32 +01:00
parent 2a6e8ad68e
commit 92c5d3b720

View File

@ -226,7 +226,7 @@ BEGIN
AND placex.rank_address = bnd.rank_address
AND placex.osm_type = 'N'
AND placex.rank_search < 26 -- needed to select the right index
AND st_covers(geometry, placex.geometry)
AND _st_covers(bnd.geometry, placex.geometry)
LOOP
--DEBUG: RAISE WARNING 'Found matching place node %', linkedPlacex.osm_id;
RETURN linked_placex;