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

Commit306b991

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 parent4c85364 commit306b991

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
@@ -8408,7 +8408,7 @@ CreateEndOfRecoveryRecord(void)
84088408
if (!RecoveryInProgress())
84098409
elog(ERROR,"can only be used to end recovery");
84108410

8411-
xlrec.end_time=time(NULL);
8411+
xlrec.end_time=GetCurrentTimestamp();
84128412

84138413
WALInsertLockAcquireExclusive();
84148414
xlrec.ThisTimeLineID=ThisTimeLineID;
@@ -8433,7 +8433,7 @@ CreateEndOfRecoveryRecord(void)
84338433
* changes to this point.
84348434
*/
84358435
LWLockAcquire(ControlFileLock,LW_EXCLUSIVE);
8436-
ControlFile->time= (pg_time_t)xlrec.end_time;
8436+
ControlFile->time= (pg_time_t)time(NULL);
84378437
ControlFile->minRecoveryPoint=recptr;
84388438
ControlFile->minRecoveryPointTLI=ThisTimeLineID;
84398439
UpdateControlFile();

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp