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 214     214   112710 use warnings;
  214         566  
  214         8365  
5 214     214   1244 use strict;
  214         470  
  214         6391  
6              
7 214     214   1137 use base qw( DBIx::Class::SQLMaker );
  214         454  
  214         89828  
8              
9             #
10             # SQLite does not understand SELECT ... FOR UPDATE
11             # Disable it here
12             sub _lock_select () { '' };
13              
14             1;