Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5c805d0

Browse files
committed
Fix timestamp in end-of-recovery WAL records.
We used time(null) to set a TimestampTz field, which gave bogus results.Noticed while looking at pg_xlogdump output.Backpatch to 9.3 and above, where the fast promotion was introduced.
1 parent37de8de commit5c805d0

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

‎src/backend/access/transam/xlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8076,7 +8076,7 @@ CreateEndOfRecoveryRecord(void)
80768076
if (!RecoveryInProgress())
80778077
elog(ERROR,"can only be used to end recovery");
80788078

8079-
xlrec.end_time=time(NULL);
8079+
xlrec.end_time=GetCurrentTimestamp();
80808080

80818081
WALInsertLockAcquireExclusive();
80828082
xlrec.ThisTimeLineID=ThisTimeLineID;
@@ -8098,7 +8098,7 @@ CreateEndOfRecoveryRecord(void)
80988098
* changes to this point.
80998099
*/
81008100
LWLockAcquire(ControlFileLock,LW_EXCLUSIVE);
8101-
ControlFile->time= (pg_time_t)xlrec.end_time;
8101+
ControlFile->time= (pg_time_t)time(NULL);
81028102
ControlFile->minRecoveryPoint=recptr;
81038103
ControlFile->minRecoveryPointTLI=ThisTimeLineID;
81048104
UpdateControlFile();

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp