From f55cb386d4d1ab87404643619f054e1b27d35944 Mon Sep 17 00:00:00 2001 From: David Steele Date: Wed, 24 Jun 2020 18:33:20 -0400 Subject: [PATCH] Fix versions passed to HRNPQ_MACRO_OPEN_GE_92() test macro. These were not noticed because currently 9.3 and 9.6 behave the same on open. --- test/src/module/command/backupTest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/src/module/command/backupTest.c b/test/src/module/command/backupTest.c index 113830dbe5..dd4f5cd80d 100644 --- a/test/src/module/command/backupTest.c +++ b/test/src/module/command/backupTest.c @@ -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() }); @@ -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() }); @@ -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() }); @@ -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),