X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSQLMaker%2FSQLite.pm;h=91f78e48100e08ea25b612592fb8ccf1edd3c2ca;hb=229401a04e99e27e256fdcd24b3c34087c9c2bc1;hp=b3d6d2c8168e6e734ce0d2f4310752b691951568;hpb=e5372da42c1bb393cd2aadde5765a09d64428581;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/SQLMaker/SQLite.pm b/lib/DBIx/Class/SQLMaker/SQLite.pm index b3d6d2c..91f78e4 100644 --- a/lib/DBIx/Class/SQLMaker/SQLite.pm +++ b/lib/DBIx/Class/SQLMaker/SQLite.pm @@ -1,12 +1,14 @@ package # Hide from PAUSE DBIx::Class::SQLMaker::SQLite; +use warnings; +use strict; + use base qw( DBIx::Class::SQLMaker ); -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;