File Coverage

blib/lib/DBIx/QuickDB/Driver/Percona.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 2 0.0
total 29 31 93.5


line stmt bran cond sub pod time code
1             package DBIx::QuickDB::Driver::Percona;
2 8     8   135706 use strict;
  8         14  
  8         260  
3 8     8   31 use warnings;
  8         12  
  8         547  
4              
5             our $VERSION = '0.000051';
6              
7 8     8   2041 use IPC::Cmd qw/can_run/;
  8         159960  
  8         542  
8 8     8   2390 use Capture::Tiny qw/capture/;
  8         31465  
  8         475  
9              
10 8     8   52 use parent 'DBIx::QuickDB::Driver::MySQLCom';
  8         22  
  8         50  
11 8     8   489 use DBIx::QuickDB::Util::HashBase;
  8         31  
  8         48  
12              
13 14     14 0 38 sub provider { 'Percona Server' }
14              
15 14     14 0 37 sub dbd_driver_order { my $class = shift; $class->SUPER::dbd_driver_order($ENV{QDB_PERCONA_DBD}) }
  14         81  
16              
17             1;
18              
19             __END__