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 209     209   106112 use warnings;
  209         513  
  209         6980  
5 209     209   898 use strict;
  209         494  
  209         4836  
6              
7 209     209   792 use base qw( DBIx::Class::SQLMaker );
  209         423  
  209         95975  
8              
9             #
10             # SQLite does not understand SELECT ... FOR UPDATE
11             # Disable it here
12             sub _lock_select () { '' };
13              
14             1;