We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a7b59 commit 928ac0fCopy full SHA for 928ac0f
t/00_test_tester.t
@@ -33,8 +33,10 @@ for my $line (split /\n/ => $info) {
33
my $ok = 1;
34
for my $act (sort keys %action) {
35
## Special known exceptions
36
- next if $act eq 'table_size' or $act eq 'index_size';
37
- next if $act eq 'last_autoanalyze' or $act eq 'last_autovacuum';
+ next if grep { $act eq $_ } qw(
+ index_size table_size indexes_size total_relation_size
38
+ last_autoanalyze last_autovacuum
39
+ );
40
41
my $file = "t/02_$act.t";
42
if (! -e $file) {
0 commit comments