+ fix oracle mode

This commit is contained in:
garnier-quentin 2015-07-09 15:15:18 +02:00
parent 827d35019f
commit b842fb6059
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ sub run {
if (/db full/ && $$row[0] =~ /db incr/i && defined($$row[2]) && $$row[2] == 0) { # it's a full. we get
$$row[0] = 'DB FULL';
} else {
next if (/db incr/ && $row[0] =~ /db incr/i && defined($$row[2]) && $$row[2] == 0); # it's a full. we skip.
next if (/db incr/ && $$row[0] =~ /db incr/i && defined($$row[2]) && $$row[2] == 0); # it's a full. we skip.
next if ($$row[0] !~ /$_/i);
}