Compare commits

..

No commits in common. "2d758dca1b31baed43c3f17ea742bee6a9ed7dbd" and "efa8f606402c3d7ca361932418cbcc2600b6c059" have entirely different histories.

2 changed files with 5 additions and 3 deletions

View File

@ -301,7 +301,7 @@ sub set_query_timer_restart
{
my $self = shift;
$self->{query_timer_restart} = 1;
$self->{query_timer_restart} = shift if @_;
return $self->{query_timer_restart};
}

View File

@ -1972,7 +1972,8 @@ sub psql
Invoke B<psql> on B<$dbname> and return a BackgroundPsql object.
A timeout of $PostgreSQL::Test::Utils::timeout_default is set up.
A default timeout of $PostgreSQL::Test::Utils::timeout_default is set up,
which can be modified later.
psql is invoked in tuples-only unaligned mode with reading of B<.psqlrc>
disabled. That may be overridden by passing extra psql parameters.
@ -2038,7 +2039,8 @@ 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 timeout of $PostgreSQL::Test::Utils::timeout_default is set up.
A default timeout of $PostgreSQL::Test::Utils::timeout_default is set up,
which can be modified later.
psql is invoked in tuples-only unaligned mode with reading of B<.psqlrc>
disabled. That may be overridden by passing extra psql parameters.