postgresql/src/bin/scripts/t/101_vacuumdb_all.pl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
316 B
Perl
Raw Normal View History

# Copyright (c) 2021, PostgreSQL Global Development Group
use strict;
use warnings;
use PostgresNode;
use Test::More tests => 2;
my $node = PostgresNode->new('main');
$node->init;
$node->start;
$node->issues_sql_like(
[ 'vacuumdb', '-a' ],
qr/statement: VACUUM.*statement: VACUUM/s,
'vacuum all databases');