}
}
print "\n";
+
+ return;
+
}
if (keys %critical) {
}
}
+ return;
+
} ## end of check_pgb_pool
## Parse the statement to get columns, index type, expression, and predicate
if ($one->{statement} !~ /\ACREATE (\w* ?INDEX .+? ON .+? USING (\w+) (.+))/) {
die "Could not parse index statement: $one->{statement}\n";
- next;
}
my ($def1, $method1,$col1) = ($1,$2,$3);
my $where1 = $col1 =~ s/WHERE (.+)// ? $1 : '';
if ($two->{statement} !~ /\ACREATE (\w* ?INDEX .+? ON .+? USING (\w+) (.+))/) {
die "Could not parse index statement: $two->{statement}\n";
- next;
}
my ($def2,$method2,$col2) = ($1,$2,$3);
my $where2 = $col2 =~ s/WHERE (.+)// ? $1 : '';