File Coverage

blib/lib/DBIx/Connector/Driver/MariaDB.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 16 75.0


line stmt bran cond sub pod time code
1 1     1   3931 use strict; use warnings;
  1     1   12  
  1         46  
  1         6  
  1         2  
  1         96  
2              
3             package DBIx::Connector::Driver::MariaDB;
4              
5 1     1   753 use DBIx::Connector::Driver::mysql;
  1         4  
  1         125  
6              
7             our $VERSION = '0.60';
8             our @ISA = qw( DBIx::Connector::Driver::mysql );
9              
10             sub _connect {
11 0     0     my ($self, $dbh) = @_;
12 0           $dbh->{mariadb_auto_reconnect} = 0;
13 0           $dbh;
14             }
15              
16             1;
17              
18             __END__