]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #2484 from lonvia/fix-index-use
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 25 Oct 2021 15:20:42 +0000 (17:20 +0200)
committerGitHub <noreply@github.com>
Mon, 25 Oct 2021 15:20:42 +0000 (17:20 +0200)
Reverse: add index hints

lib-php/ReverseGeocode.php

index 47e931ef2837bf725f39846fe7c43b5a6b33a1ba..a670c623e363d31510f0df4ab743ba31de2678b5 100644 (file)
@@ -111,6 +111,7 @@ class ReverseGeocode
                 $sSQL .= ' FROM placex';
                 $sSQL .= ' WHERE osm_type = \'N\'';
                 $sSQL .= ' AND country_code = \''.$sCountryCode.'\'';
+                $sSQL .= ' AND rank_search < 26 '; // needed to select right index
                 $sSQL .= ' AND rank_search between 5 and ' .min(25, $iMaxRank);
                 $sSQL .= ' AND class = \'place\' AND type != \'postcode\'';
                 $sSQL .= ' AND name IS NOT NULL ';
@@ -206,6 +207,7 @@ class ReverseGeocode
                 // for place nodes at rank_address 16
                 $sSQL .= ' AND rank_search > '.$iRankSearch;
                 $sSQL .= ' AND rank_search <= '.$iMaxRank;
+                $sSQL .= ' AND rank_search < 26 '; // needed to select right index
                 $sSQL .= ' AND rank_address > 0';
                 $sSQL .= ' AND class = \'place\'';
                 $sSQL .= ' AND type != \'postcode\'';