aboutsummaryrefslogtreecommitdiff
path: root/src/test/perl/PostgreSQL/Test/Cluster.pm
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2024-03-18 14:21:32 +0900
committerMichael Paquier <michael@paquier.xyz>2024-03-18 14:21:32 +0900
commitca108be72e7abf1f801c8e49dcffbbbbf412c0d9 (patch)
tree2e141899eab3319b8e0e39fb5b49a902f333a433 /src/test/perl/PostgreSQL/Test/Cluster.pm
parent949300402bde06699a23f216e26343e3503ba78b (diff)
downloadpostgresql-ca108be72e7abf1f801c8e49dcffbbbbf412c0d9.tar.gz
postgresql-ca108be72e7abf1f801c8e49dcffbbbbf412c0d9.zip
Remove references to backup_fs_hot() in Cluster.pm
This routine has been removed in 39969e2a1e4d with the exclusive backup mode but there were still references to it. Issue noticed while working on 071e3ad59d6f.
Diffstat (limited to 'src/test/perl/PostgreSQL/Test/Cluster.pm')
-rw-r--r--src/test/perl/PostgreSQL/Test/Cluster.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Cluster.pm b/src/test/perl/PostgreSQL/Test/Cluster.pm
index 4fec417f6fa..4ea10d063c4 100644
--- a/src/test/perl/PostgreSQL/Test/Cluster.pm
+++ b/src/test/perl/PostgreSQL/Test/Cluster.pm
@@ -62,9 +62,6 @@ PostgreSQL::Test::Cluster - class representing PostgreSQL server instance
# Do an online pg_basebackup
my $ret = $node->backup('testbackup1');
- # Take a backup of a running server
- my $ret = $node->backup_fs_hot('testbackup2');
-
# Take a backup of a stopped server
$node->stop;
my $ret = $node->backup_fs_cold('testbackup3')
@@ -759,7 +756,7 @@ Create a backup with a filesystem level copy in subdirectory B<backup_name> of
B<< $node->backup_dir >>, including WAL. The server must be
stopped as no attempt to handle concurrent writes is made.
-Use B<backup> or B<backup_fs_hot> if you want to back up a running server.
+Use B<backup> if you want to back up a running server.
=cut