We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b3f093 commit 2877c67Copy full SHA for 2877c67
src/backend/access/transam/xlog.c
@@ -9826,9 +9826,9 @@ read_backup_label(XLogRecPtr *checkPointLoc, bool *backupEndRequired)
9826
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
9827
errmsg("invalid data in file \"%s\"", BACKUP_LABEL_FILE)));
9828
/*
9829
- * BACKUP METHOD line is new in 9.0. Don't complain if it doesn't exist,
9830
- * in case you're restoring from a backup taken with an 9.0 beta version
9831
- * that didn't emit it.
+ * BACKUP METHOD line is new in 9.2. We can't restore from an older backup
+ * anyway, but since the information on it is not strictly required, don't
+ * error out if it's missing for some reason.
9832
*/
9833
if (fscanf(lfp, "BACKUP METHOD: %19s", backuptype) == 1)
9834
{
0 commit comments