mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-01-07 13:40:17 +02:00
Make pg_probackup support ptrack 1.7
This commit is contained in:
parent
7ab07a5f49
commit
bf1c8797ae
@ -1193,7 +1193,8 @@ pg_ptrack_support(void)
|
|||||||
|
|
||||||
/* Now we support only ptrack versions upper than 1.5 */
|
/* Now we support only ptrack versions upper than 1.5 */
|
||||||
if (strcmp(PQgetvalue(res_db, 0, 0), "1.5") != 0 &&
|
if (strcmp(PQgetvalue(res_db, 0, 0), "1.5") != 0 &&
|
||||||
strcmp(PQgetvalue(res_db, 0, 0), "1.6") != 0)
|
strcmp(PQgetvalue(res_db, 0, 0), "1.6") != 0 &&
|
||||||
|
strcmp(PQgetvalue(res_db, 0, 0), "1.7") != 0)
|
||||||
{
|
{
|
||||||
elog(WARNING, "Update your ptrack to the version 1.5 or upper. Current version is %s", PQgetvalue(res_db, 0, 0));
|
elog(WARNING, "Update your ptrack to the version 1.5 or upper. Current version is %s", PQgetvalue(res_db, 0, 0));
|
||||||
PQclear(res_db);
|
PQclear(res_db);
|
||||||
|
Loading…
Reference in New Issue
Block a user