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

Commitf8c51fe

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 parent0e68570 commitf8c51fe

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
@@ -7270,7 +7270,7 @@ CreateEndOfRecoveryRecord(void)
72707270
if (!RecoveryInProgress())
72717271
elog(ERROR,"can only be used to end recovery");
72727272

7273-
xlrec.end_time=time(NULL);
7273+
xlrec.end_time=GetCurrentTimestamp();
72747274

72757275
LWLockAcquire(WALInsertLock,LW_SHARED);
72767276
xlrec.ThisTimeLineID=ThisTimeLineID;
@@ -7295,7 +7295,7 @@ CreateEndOfRecoveryRecord(void)
72957295
* changes to this point.
72967296
*/
72977297
LWLockAcquire(ControlFileLock,LW_EXCLUSIVE);
7298-
ControlFile->time= (pg_time_t)xlrec.end_time;
7298+
ControlFile->time= (pg_time_t)time(NULL);
72997299
ControlFile->minRecoveryPoint=recptr;
73007300
ControlFile->minRecoveryPointTLI=ThisTimeLineID;
73017301
UpdateControlFile();

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp