fix tablespace postgres

This commit is contained in:
garnier-quentin 2020-09-15 16:09:31 +02:00
parent 053f92470a
commit 0255b2b54c
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ sub manage_selection {
while (my @row = $options{sql}->fetchrow_array()) {
if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' &&
$row[0] !~ /$self->{option_results}->{filter_name}/) {
$self->{output}->output_add(long_msg => "skipping tablespace '" . $row->[0] . "': no matching filter.", debug => 1);
$self->{output}->output_add(long_msg => "skipping tablespace '" . $row[0] . "': no matching filter.", debug => 1);
next;
}