projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
dc81dba
)
Fasterize
Peter Rabbitson [Thu, 6 Jan 2011 08:59:12 +0000 (09:59 +0100)]
lib/DBIx/Class/SQLMaker/SQLite.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/SQLMaker/SQLite.pm
b/lib/DBIx/Class/SQLMaker/SQLite.pm
index
b3d6d2c
..
50acef2
100644
(file)
--- a/
lib/DBIx/Class/SQLMaker/SQLite.pm
+++ b/
lib/DBIx/Class/SQLMaker/SQLite.pm
@@
-7,6
+7,6
@@
use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/;
#
# SQLite does not understand SELECT ... FOR UPDATE
# Disable it here
-sub _lock_select { '' };
+sub _lock_select () { '' };
1;