File Coverage

blib/lib/DBIx/Class/SQLMaker/SQLite.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package # Hide from PAUSE
2             DBIx::Class::SQLMaker::SQLite;
3              
4 212     212   132060 use warnings;
  212         793  
  212         7815  
5 212     212   1351 use strict;
  212         734  
  212         6719  
6              
7 212     212   1303 use base qw( DBIx::Class::SQLMaker );
  212         751  
  212         120504  
8              
9             #
10             # SQLite does not understand SELECT ... FOR UPDATE
11             # Disable it here
12             sub _lock_select () { '' };
13              
14             1;