8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159efe4 commit 6f1d723Copy full SHA for 6f1d723
src/backend/replication/slotfuncs.c
@@ -480,8 +480,7 @@ pg_replication_slot_advance(PG_FUNCTION_ARGS)
480
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
481
errmsg("cannot move slot to %X/%X, minimum is %X/%X",
482
(uint32) (moveto >> 32), (uint32) moveto,
483
- (uint32) (MyReplicationSlot->data.confirmed_flush >> 32),
484
- (uint32) (MyReplicationSlot->data.confirmed_flush))));
+ (uint32) (startlsn >> 32), (uint32) startlsn)));
485
}
486
487
if (OidIsValid(MyReplicationSlot->data.database))
0 commit comments