We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9493004 commitca108beCopy full SHA for ca108be
src/test/perl/PostgreSQL/Test/Cluster.pm
@@ -62,9 +62,6 @@ PostgreSQL::Test::Cluster - class representing PostgreSQL server instance
62
# Do an online pg_basebackup
63
my $ret = $node->backup('testbackup1');
64
65
- # Take a backup of a running server
66
- my $ret = $node->backup_fs_hot('testbackup2');
67
-
68
# Take a backup of a stopped server
69
$node->stop;
70
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
759
756
B<< $node->backup_dir>>, including WAL. The server must be
760
757
stopped as no attempt to handle concurrent writes is made.
761
758
762
-UseB<backup>orB<backup_fs_hot>if you want to back up a running server.
+UseB<backup> if you want to back up a running server.
763
764
=cut
765