Skip to content

Commit

Permalink
Fix versions passed to HRNPQ_MACRO_OPEN_GE_92() test macro.
Browse files Browse the repository at this point in the history
These were not noticed because currently 9.3 and 9.6 behave the same on open.
  • Loading branch information
dwsteele committed Jun 24, 2020
1 parent c5892d1 commit f55cb38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/src/module/command/backupTest.c
Expand Up @@ -1127,7 +1127,7 @@ testRun(void)
harnessPqScriptSet((HarnessPq [])
{
// Connect to primary
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_96, strPtr(pg1Path), false, NULL, NULL),
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_93, strPtr(pg1Path), false, NULL, NULL),

HRNPQ_MACRO_DONE()
});
Expand Down Expand Up @@ -1157,7 +1157,7 @@ testRun(void)
harnessPqScriptSet((HarnessPq [])
{
// Connect to primary
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_96, strPtr(pg1Path), false, NULL, NULL),
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_93, strPtr(pg1Path), false, NULL, NULL),

HRNPQ_MACRO_DONE()
});
Expand All @@ -1173,7 +1173,7 @@ testRun(void)
harnessPqScriptSet((HarnessPq [])
{
// Connect to primary
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_96, strPtr(pg1Path), false, NULL, NULL),
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_93, strPtr(pg1Path), false, NULL, NULL),

HRNPQ_MACRO_DONE()
});
Expand Down Expand Up @@ -1206,7 +1206,7 @@ testRun(void)
harnessPqScriptSet((HarnessPq [])
{
// Connect to primary
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_96, strPtr(pg1Path), false, NULL, NULL),
HRNPQ_MACRO_OPEN_GE_92(1, "dbname='postgres' port=5432", PG_VERSION_93, strPtr(pg1Path), false, NULL, NULL),

// Don't advance time after wait
HRNPQ_MACRO_TIME_QUERY(1, 1575392588998),
Expand Down

0 comments on commit f55cb38

Please sign in to comment.