mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
PITR can stop at a named restore point when recovery target = time
though must not update the last transaction timestamp. Plus comment and message cleanup for recent named restore point. Fujii Masao, minor changes by me
This commit is contained in:
parent
01ff8dd756
commit
5c588be729
@ -5228,7 +5228,7 @@ readRecoveryCommandFile(void)
|
|||||||
if (strlen(recoveryTargetName) >= MAXFNAMELEN)
|
if (strlen(recoveryTargetName) >= MAXFNAMELEN)
|
||||||
ereport(FATAL,
|
ereport(FATAL,
|
||||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||||
errmsg("recovery_target_name is too long")));
|
errmsg("recovery_target_name is too long (maximum %d characters)", MAXFNAMELEN - 1)));
|
||||||
|
|
||||||
ereport(DEBUG2,
|
ereport(DEBUG2,
|
||||||
(errmsg("recovery_target_name = '%s'",
|
(errmsg("recovery_target_name = '%s'",
|
||||||
@ -5448,7 +5448,7 @@ exitArchiveRecovery(TimeLineID endTLI, uint32 endLogId, uint32 endLogSeg)
|
|||||||
* Returns TRUE if we are stopping, FALSE otherwise. On TRUE return,
|
* Returns TRUE if we are stopping, FALSE otherwise. On TRUE return,
|
||||||
* *includeThis is set TRUE if we should apply this record before stopping.
|
* *includeThis is set TRUE if we should apply this record before stopping.
|
||||||
*
|
*
|
||||||
* We also track the timestamp of the latest applied COMMIT/ABORT/RESTORE POINT
|
* We also track the timestamp of the latest applied COMMIT/ABORT
|
||||||
* record in XLogCtl->recoveryLastXTime, for logging purposes.
|
* record in XLogCtl->recoveryLastXTime, for logging purposes.
|
||||||
* Also, some information is saved in recoveryStopXid et al for use in
|
* Also, some information is saved in recoveryStopXid et al for use in
|
||||||
* annotating the new timeline's history file.
|
* annotating the new timeline's history file.
|
||||||
@ -5493,6 +5493,11 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
|
|||||||
/* Do we have a PITR target at all? */
|
/* Do we have a PITR target at all? */
|
||||||
if (recoveryTarget == RECOVERY_TARGET_UNSET)
|
if (recoveryTarget == RECOVERY_TARGET_UNSET)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
|
* Save timestamp of latest transaction commit/abort if this is
|
||||||
|
* a transaction record
|
||||||
|
*/
|
||||||
|
if (record->xl_rmid == RM_XACT_ID)
|
||||||
SetLatestXTime(recordXtime);
|
SetLatestXTime(recordXtime);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -5500,7 +5505,7 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
|
|||||||
if (recoveryTarget == RECOVERY_TARGET_XID)
|
if (recoveryTarget == RECOVERY_TARGET_XID)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* there can be only one transaction end record with this exact
|
* There can be only one transaction end record with this exact
|
||||||
* transactionid
|
* transactionid
|
||||||
*
|
*
|
||||||
* when testing for an xid, we MUST test for equality only, since
|
* when testing for an xid, we MUST test for equality only, since
|
||||||
@ -5515,13 +5520,13 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
|
|||||||
else if (recoveryTarget == RECOVERY_TARGET_NAME)
|
else if (recoveryTarget == RECOVERY_TARGET_NAME)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* there can be many restore points that share the same name, so we stop
|
* There can be many restore points that share the same name, so we stop
|
||||||
* at the first one
|
* at the first one
|
||||||
*/
|
*/
|
||||||
stopsHere = (strcmp(recordRPName, recoveryTargetName) == 0);
|
stopsHere = (strcmp(recordRPName, recoveryTargetName) == 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ignore recoveryTargetInclusive because this is not a transaction
|
* Ignore recoveryTargetInclusive because this is not a transaction
|
||||||
* record
|
* record
|
||||||
*/
|
*/
|
||||||
*includeThis = false;
|
*includeThis = false;
|
||||||
@ -5529,7 +5534,7 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* there can be many transactions that share the same commit time, so
|
* There can be many transactions that share the same commit time, so
|
||||||
* we stop after the last one, if we are inclusive, or stop at the
|
* we stop after the last one, if we are inclusive, or stop at the
|
||||||
* first one if we are exclusive
|
* first one if we are exclusive
|
||||||
*/
|
*/
|
||||||
@ -5583,10 +5588,15 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
|
|||||||
timestamptz_to_str(recoveryStopTime))));
|
timestamptz_to_str(recoveryStopTime))));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (recoveryStopAfter)
|
/*
|
||||||
|
* Note that if we use a RECOVERY_TARGET_TIME then we can stop
|
||||||
|
* at a restore point since they are timestamped, though the latest
|
||||||
|
* transaction time is not updated.
|
||||||
|
*/
|
||||||
|
if (record->xl_rmid == RM_XACT_ID && recoveryStopAfter)
|
||||||
SetLatestXTime(recordXtime);
|
SetLatestXTime(recordXtime);
|
||||||
}
|
}
|
||||||
else
|
else if (record->xl_rmid == RM_XACT_ID)
|
||||||
SetLatestXTime(recordXtime);
|
SetLatestXTime(recordXtime);
|
||||||
|
|
||||||
return stopsHere;
|
return stopsHere;
|
||||||
@ -9220,7 +9230,7 @@ pg_create_restore_point(PG_FUNCTION_ARGS)
|
|||||||
if (strlen(restore_name_str) >= MAXFNAMELEN)
|
if (strlen(restore_name_str) >= MAXFNAMELEN)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||||
errmsg("value too long for restore point")));
|
errmsg("value too long for restore point (maximum %d characters)", MAXFNAMELEN - 1)));
|
||||||
|
|
||||||
restorepoint = XLogRestorePoint(restore_name_str);
|
restorepoint = XLogRestorePoint(restore_name_str);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user