X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5c2982adcec6746ed31ac53d5e7efc8a797888e8..98cb868ec119fca6eeec9145afe79bb9a621b4a4:/utils/setup.php diff --git a/utils/setup.php b/utils/setup.php index c45cc857..fbf902e7 100755 --- a/utils/setup.php +++ b/utils/setup.php @@ -613,7 +613,7 @@ } // Find the last node in the DB - $iLastOSMID = $oDB->getOne("select max(id) from planet_osm_nodes"); + $iLastOSMID = $oDB->getOne("select max(osm_id) from place where osm_type = 'N'"); // Lookup the timestamp that node was created (less 3 hours for margin for changsets to be closed) $sLastNodeURL = 'http://www.openstreetmap.org/api/0.6/node/'.$iLastOSMID."/1";