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
/
SQLite.pm
1
package # Hide from PAUSE
2
DBIx::Class::SQLMaker::SQLite;
3
4
use warnings;
5
use strict;
6
7
use base qw( DBIx::Class::SQLMaker );
8
9
#
10
# SQLite does not understand SELECT ... FOR UPDATE
11
# Disable it here
12
sub _lock_select () { '' };
13
14
1;