aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiko Sawada <msawada@postgresql.org>2023-11-30 11:23:05 +0900
committerMasahiko Sawada <msawada@postgresql.org>2023-11-30 11:23:05 +0900
commit2d758dca1b31baed43c3f17ea742bee6a9ed7dbd (patch)
tree1aad1ed0def24da0d20ab9e97712f60f8551e5fe
parentc684d7c80f5cb60d2c67a42ef4568dbc121fed6e (diff)
downloadpostgresql-2d758dca1b31baed43c3f17ea742bee6a9ed7dbd.tar.gz
postgresql-2d758dca1b31baed43c3f17ea742bee6a9ed7dbd.zip
Fix wrong description of BackgroundPsql's timeout.
Backpatch through 16 where this was introduced by 664d757531e1. Reviewed-by: Daniel Gustafsson Backpatch-through: 16 Discussion: http://postgr.es/m/CAD21AoBXMEqDBLoDuAWVWoTLYB4aNsxx4oYNmyJJbhfq_vGQBQ@mail.gmail.com
-rw-r--r--src/test/perl/PostgreSQL/Test/Cluster.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Cluster.pm b/src/test/perl/PostgreSQL/Test/Cluster.pm
index 5e161dbee60..131edb07418 100644
--- a/src/test/perl/PostgreSQL/Test/Cluster.pm
+++ b/src/test/perl/PostgreSQL/Test/Cluster.pm
@@ -1972,8 +1972,7 @@ sub psql
Invoke B<psql> on B<$dbname> and return a BackgroundPsql object.
-A default timeout of $PostgreSQL::Test::Utils::timeout_default is set up,
-which can be modified later.
+A timeout of $PostgreSQL::Test::Utils::timeout_default is set up.
psql is invoked in tuples-only unaligned mode with reading of B<.psqlrc>
disabled. That may be overridden by passing extra psql parameters.
@@ -2039,8 +2038,7 @@ sub background_psql
Invoke B<psql> on B<$dbname> and return a BackgroundPsql object, which the
caller may use to send interactive input to B<psql>.
-A default timeout of $PostgreSQL::Test::Utils::timeout_default is set up,
-which can be modified later.
+A timeout of $PostgreSQL::Test::Utils::timeout_default is set up.
psql is invoked in tuples-only unaligned mode with reading of B<.psqlrc>
disabled. That may be overridden by passing extra psql parameters.