]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/update.php
update: getPostgresVersion requires a database connection
[nominatim.git] / utils / update.php
index 232a23c97dc57dca322381e14da2b3d282d268b8..52577d8889a31e235b8c1980b2479db2f6e484d3 100755 (executable)
@@ -156,12 +156,12 @@ if ($bHaveDiff) {
 }
 
 if ($aResult['deduplicate']) {
-    //
-    if (getPostgresVersion() < 9.3) {
+    $oDB =& getDB();
+
+    if (getPostgresVersion($oDB) < 9.3) {
         fail("ERROR: deduplicate is only currently supported in postgresql 9.3");
     }
 
-    $oDB =& getDB();
     $sSQL = 'select partition from country_name order by country_code';
     $aPartitions = chksql($oDB->getCol($sSQL));
     $aPartitions[] = 0;