File Coverage

blib/lib/DBIx/Class/SQLMaker/MSSQL.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 14 85.7


line stmt bran cond sub pod time code
1             package # Hide from PAUSE
2             DBIx::Class::SQLMaker::MSSQL;
3              
4 3     3   344 use warnings;
  3         6  
  3         95  
5 3     3   18 use strict;
  3         4  
  3         78  
6              
7 3     3   19 use base qw( DBIx::Class::SQLMaker );
  3         10  
  3         646  
8              
9             #
10             # MSSQL does not support ... OVER() ... RNO limits
11             #
12             sub _rno_default_order {
13 0     0     return \ '(SELECT(1))';
14             }
15              
16             1;