From: Peter Rabbitson Date: Thu, 6 Jan 2011 08:59:12 +0000 (+0100) Subject: Fasterize X-Git-Tag: v0.08127~26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1645dd485bc5f015c46beaa9e92bc0ca9f52a836;p=dbsrgits%2FDBIx-Class.git Fasterize --- diff --git a/lib/DBIx/Class/SQLMaker/SQLite.pm b/lib/DBIx/Class/SQLMaker/SQLite.pm index b3d6d2c..50acef2 100644 --- 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;