mirror of
https://github.com/postgres/postgres.git
synced 2026-03-13 14:14:09 -04:00
Initialize 'recordXtime' to silence compiler warning.
In reality, recordXtime will always be set by the getRecordTimestamp call, but the compiler doesn't necessarily see that. Back-patch to all supported versions. Author: Tristan Partin Discussion: https://www.postgresql.org/message-id/CT5MN8E11U0M.1NYNCHXYUHY41@gonk
This commit is contained in:
parent
3f1aaaa180
commit
95f0340c3b
1 changed files with 1 additions and 1 deletions
|
|
@ -2644,7 +2644,7 @@ recoveryStopsAfter(XLogReaderState *record)
|
|||
uint8 info;
|
||||
uint8 xact_info;
|
||||
uint8 rmid;
|
||||
TimestampTz recordXtime;
|
||||
TimestampTz recordXtime = 0;
|
||||
|
||||
/*
|
||||
* Ignore recovery target settings when not in archive recovery (meaning
|
||||
|
|
|
|||
Loading…
Reference in a new issue