File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/backend/access/transam Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.411 2010/05/14 07:11:48 sriggs Exp $
10
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.412 2010/05/15 07:14:43 sriggs Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -5450,7 +5450,7 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
5450
5450
CheckPoint checkPoint ;
5451
5451
5452
5452
memcpy (& checkPoint , XLogRecGetData (record ), sizeof (CheckPoint ));
5453
- recoveryLastXTime = checkPoint .time ;
5453
+ recoveryLastXTime = time_t_to_timestamptz ( checkPoint .time ) ;
5454
5454
}
5455
5455
5456
5456
/*
You can’t perform that action at this time.
0 commit comments