Skip to content

Commit bf1c879

Browse files
committed
Make pg_probackup support ptrack 1.7
1 parent 7ab07a5 commit bf1c879

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/backup.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,8 @@ pg_ptrack_support(void)
11931193

11941194
/* Now we support only ptrack versions upper than 1.5 */
11951195
if (strcmp(PQgetvalue(res_db, 0, 0), "1.5") != 0 &&
1196-
strcmp(PQgetvalue(res_db, 0, 0), "1.6") != 0)
1196+
strcmp(PQgetvalue(res_db, 0, 0), "1.6") != 0 &&
1197+
strcmp(PQgetvalue(res_db, 0, 0), "1.7") != 0)
11971198
{
11981199
elog(WARNING, "Update your ptrack to the version 1.5 or upper. Current version is %s", PQgetvalue(res_db, 0, 0));
11991200
PQclear(res_db);

0 commit comments

Comments
 (0)