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

Commitbffbeec

Browse files
committed
pg_upgrade: force timeline 1 in the new cluster
Previously, this prevented promoted standby servers from being upgradedbecause of a missing WAL history file. (Timeline 1 doesn't need ahistory file, and we don't copy WAL files anyway.)Report by Christian Echerer(?), Alexey KlyukinBackpatch through 9.0
1 parent4cfba53 commitbffbeec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎contrib/pg_upgrade/pg_upgrade.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,8 +659,9 @@ copy_clog_xlog_xid(void)
659659
/* now reset the wal archives in the new cluster */
660660
prep_status("Resetting WAL archives");
661661
exec_prog(UTILITY_LOG_FILE,NULL, true,
662-
"\"%s/pg_resetxlog\" -l %s \"%s\"",new_cluster.bindir,
663-
old_cluster.controldata.nextxlogfile,
662+
/* use timeline 1 to match controldata and no WAL history file */
663+
"\"%s/pg_resetxlog\" -l 00000001%s \"%s\"",new_cluster.bindir,
664+
old_cluster.controldata.nextxlogfile+8,
664665
new_cluster.pgdata);
665666
check_ok();
666667
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp