fix total mssql transactions

This commit is contained in:
garnier-quentin 2020-07-07 14:52:53 +02:00
parent 7bef85b8dd
commit a3abf97b1e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ sub manage_selection {
$self->{global} = {};
$self->{database} = {};
foreach my $row (@$result) {
if ($row->[0] eq '_Total') {
if ($row->[0] =~ /_Total/) {
$self->{global}->{transactions} = $row->[1];
next;
}