]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/setup/SetupClass.php
Merge pull request #1238 from lonvia/simplify-version-check
[nominatim.git] / lib / setup / SetupClass.php
index 74dabb2492b6d1199ce4240241353d10d9ed3a3e..5191d87ca29d64e1a7e5dcf8529f8a5bac0d4f9d 100755 (executable)
@@ -102,7 +102,7 @@ class SetupFunctions
         $fPostgresVersion = getPostgresVersion($this->oDB);
         echo 'Postgres version found: '.$fPostgresVersion."\n";
 
-        if ($fPostgresVersion < 9.1) {
+        if ($fPostgresVersion < 9.01) {
             fail('Minimum supported version of Postgresql is 9.1.');
         }