mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 08:36:30 +00:00
"standby clone": ensure "pg_subtrans" directory is created in Barman mode
This commit is contained in:
3
HISTORY
3
HISTORY
@@ -13,6 +13,9 @@
|
|||||||
repmgr: fix upstream node display in "repmgr node status"; GitHub #363 (fanf2)
|
repmgr: fix upstream node display in "repmgr node status"; GitHub #363 (fanf2)
|
||||||
repmgr: improve/clarify documentation and update --help output for
|
repmgr: improve/clarify documentation and update --help output for
|
||||||
"primary unregister"; GitHub #373 (Ian)
|
"primary unregister"; GitHub #373 (Ian)
|
||||||
|
repmgr: fix parsing of "pg_basebackup_options"; GitHub #376 (Ian)
|
||||||
|
repmgr: ensure "pg_subtrans" directory is created when cloning a standby in
|
||||||
|
Barman mode (Ian)
|
||||||
|
|
||||||
4.0.2 2018-01-18
|
4.0.2 2018-01-18
|
||||||
repmgr: add missing -W option to getopt_long() invocation; GitHub #350 (Ian)
|
repmgr: add missing -W option to getopt_long() invocation; GitHub #350 (Ian)
|
||||||
|
|||||||
@@ -101,6 +101,19 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
parsing of <varname>pg_basebackup_options</varname> fixed (GitHub #376)
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
ensure the <filename>pg_subtrans</filename> directory is created when cloning a
|
||||||
|
standby in Barman mode
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|||||||
@@ -4449,8 +4449,8 @@ run_file_backup(t_node_info *node_record)
|
|||||||
/* Only from 9.4 */
|
/* Only from 9.4 */
|
||||||
"pg_dynshmem", "pg_logical", "pg_logical/snapshots", "pg_logical/mappings", "pg_replslot",
|
"pg_dynshmem", "pg_logical", "pg_logical/snapshots", "pg_logical/mappings", "pg_replslot",
|
||||||
/* Already in 9.3 */
|
/* Already in 9.3 */
|
||||||
"pg_notify", "pg_serial", "pg_snapshots", "pg_stat", "pg_stat_tmp", "pg_tblspc",
|
"pg_notify", "pg_serial", "pg_snapshots", "pg_stat", "pg_stat_tmp",
|
||||||
"pg_twophase", "pg_xlog", 0
|
"pg_subtrans", "pg_tblspc", "pg_twophase", "pg_xlog", 0
|
||||||
};
|
};
|
||||||
const int vers[] = {
|
const int vers[] = {
|
||||||
100000,
|
100000,
|
||||||
|
|||||||
Reference in New Issue
Block a user