Simplify parsing of postgres and postgis versions

Switch to functions server_version_num and postgis_lib_version
which both only return the version string, so that no elaborate
string parsing is necessary anymore. The version string could
become especially cumbersome in pre-release versions.
This commit is contained in:
Sarah Hoffmann
2018-11-18 17:18:17 +01:00
parent fb796d14ec
commit 9cf85f90fb
2 changed files with 5 additions and 5 deletions

View File

@@ -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.');
}