diff options
author | John Naylor <john.naylor@postgresql.org> | 2025-03-07 10:35:21 +0700 |
---|---|---|
committer | John Naylor <john.naylor@postgresql.org> | 2025-03-07 10:35:21 +0700 |
commit | 19e57f4f78e4354d9a21c284868373d28bb0d368 (patch) | |
tree | b741fd0412102207f8f6a4bf3a0d9fed022293b3 /src/test/perl/PostgreSQL/Test/Cluster.pm | |
parent | fcabc3adf889ebf2c2d8d1c084989f5fd95aac2f (diff) | |
download | postgresql-19e57f4f78e4354d9a21c284868373d28bb0d368.tar.gz postgresql-19e57f4f78e4354d9a21c284868373d28bb0d368.zip |
Revert "vacuumdb: Add option for analyzing only relations missing stats."
This reverts commit 5f8eb25706b62923c53172e453c8a4dedd877a3d, which in
my branch by mistake.
Diffstat (limited to 'src/test/perl/PostgreSQL/Test/Cluster.pm')
-rw-r--r-- | src/test/perl/PostgreSQL/Test/Cluster.pm | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Cluster.pm b/src/test/perl/PostgreSQL/Test/Cluster.pm index ff8e04d3a03..b105cba05a6 100644 --- a/src/test/perl/PostgreSQL/Test/Cluster.pm +++ b/src/test/perl/PostgreSQL/Test/Cluster.pm @@ -2820,33 +2820,6 @@ sub issues_sql_like =pod -=item $node->issues_sql_unlike(cmd, unexpected_sql, test_name) - -Run a command on the node, then verify that $unexpected_sql does not appear in -the server log file. - -=cut - -sub issues_sql_unlike -{ - local $Test::Builder::Level = $Test::Builder::Level + 1; - - my ($self, $cmd, $unexpected_sql, $test_name) = @_; - - local %ENV = $self->_get_env(); - - my $log_location = -s $self->logfile; - - my $result = PostgreSQL::Test::Utils::run_log($cmd); - ok($result, "@$cmd exit code 0"); - my $log = - PostgreSQL::Test::Utils::slurp_file($self->logfile, $log_location); - unlike($log, $unexpected_sql, "$test_name: SQL not found in server log"); - return; -} - -=pod - =item $node->log_content() Returns the contents of log of the node |