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   554 use warnings;
  3         9  
  3         94  
5 3     3   14 use strict;
  3         8  
  3         63  
6              
7 3     3   15 use base qw( DBIx::Class::SQLMaker );
  3         5  
  3         879  
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;