projects
/
dbsrgits/DBIx-Class-Historic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Slightly golf ::ResultSource::DESTROY and several weaken() calls
[dbsrgits/DBIx-Class-Historic.git]
/
lib
/
DBIx
/
Class
/
SQLMaker
/
MSSQL.pm
1
package # Hide from PAUSE
2
DBIx::Class::SQLMaker::MSSQL;
3
4
use warnings;
5
use strict;
6
7
use base qw( DBIx::Class::SQLMaker );
8
9
#
10
# MSSQL does not support ... OVER() ... RNO limits
11
#
12
sub _rno_default_order {
13
return \ '(SELECT(1))';
14
}
15
16
1;