projects
/
dbsrgits/DBIx-Class.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Use legacy File::Path API - avoid a dependency (see next commit)
[dbsrgits/DBIx-Class.git]
/
lib
/
DBIx
/
Class
/
SQLMaker
/
MSSQL.pm
Commit
Line
Data
84ddb3da
1
package # Hide from PAUSE
d5dedbd6
2
DBIx::Class::SQLMaker::MSSQL;
84ddb3da
3
d5dedbd6
4
use base qw( DBIx::Class::SQLMaker );
84ddb3da
5
6
#
7
# MSSQL does not support ... OVER() ... RNO limits
8
#
9
sub _rno_default_order {
10
return \ '(SELECT(1))';
11
}
12
13
1;