X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4e7ec92d6f86b3a4dfb1df0723d95b16865c33f0..5ec48c66cba0e9407135b2949f2a5e446d3620ed:/sql/functions/postcode_triggers.sql diff --git a/sql/functions/postcode_triggers.sql b/sql/functions/postcode_triggers.sql index 96788d65..515b7666 100644 --- a/sql/functions/postcode_triggers.sql +++ b/sql/functions/postcode_triggers.sql @@ -27,8 +27,8 @@ BEGIN NEW.parent_place_id = 0; FOR location IN SELECT place_id - FROM getNearFeatures(partition, NEW.geometry, NEW.rank_search, '{}'::int[]) - WHERE NOT isguess ORDER BY rank_address DESC LIMIT 1 + FROM getNearFeatures(partition, NEW.geometry, NEW.rank_search) + WHERE NOT isguess ORDER BY rank_address DESC, distance asc LIMIT 1 LOOP NEW.parent_place_id = location.place_id; END LOOP;