1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

Fix silly typo in code, which broke the check for reaching consistency.

This commit is contained in:
Heikki Linnakangas 2013-01-02 13:42:15 +02:00
parent bd61a623ac
commit 4ffd589f44

View File

@ -5702,7 +5702,7 @@ StartupXLOG(void)
xlogctl->replayEndRecPtr = ReadRecPtr; xlogctl->replayEndRecPtr = ReadRecPtr;
xlogctl->replayEndTLI = ThisTimeLineID; xlogctl->replayEndTLI = ThisTimeLineID;
xlogctl->lastReplayedEndRecPtr = EndRecPtr; xlogctl->lastReplayedEndRecPtr = EndRecPtr;
xlogctl->lastReplayedEndRecPtr = ThisTimeLineID; xlogctl->lastReplayedTLI = ThisTimeLineID;
xlogctl->recoveryLastXTime = 0; xlogctl->recoveryLastXTime = 0;
xlogctl->currentChunkStartTime = 0; xlogctl->currentChunkStartTime = 0;
xlogctl->recoveryPause = false; xlogctl->recoveryPause = false;