1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-02 09:53:24 +02:00

check if ptrack_version == 1.4

This commit is contained in:
Anastasia 2017-11-24 14:26:23 +03:00
parent fae522df4a
commit b5a70fcfd9

View File

@ -1099,8 +1099,9 @@ pg_ptrack_support(void)
}
/* Now we support only ptrack version 1.3 */
if (strcmp(PQgetvalue(res_db, 0, 0), "1.3") != 0)
if (strcmp(PQgetvalue(res_db, 0, 0), "1.4") != 0)
{
elog(WARNING, "Update your ptrack to the version 1.4. Current version is %s", PQgetvalue(res_db, 0, 0));
PQclear(res_db);
return false;
}