Fix bug in streaming replication over multiple tli switches.

After receiving some WAL over streaming replication, try to open the file
from the timeline we're currently recieving, not recoveryTargetTLI. They
are usually the same, which is why wasn't noticed before, but you'd get
an error if there have been more than one timeline switch between the
current point in WAL and the recovery target.
This commit is contained in:
Heikki Linnakangas 2013-01-02 14:35:15 +02:00
parent 4ffd589f44
commit d194d7a526

View File

@ -9745,7 +9745,7 @@ WaitForWALToBecomeAvailable(XLogRecPtr RecPtr, bool randAccess,
if (readFile < 0)
{
readFile = XLogFileRead(readSegNo, PANIC,
recoveryTargetTLI,
receiveTLI,
XLOG_FROM_STREAM, false);
Assert(readFile >= 0);
}