Factor out IDENTITY_INSERT for Sybase ASE and MSSQL into a component
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
index b3d6d2c..acf0337 100644 (file)
@@ -2,11 +2,10 @@ package # Hide from PAUSE
   DBIx::Class::SQLMaker::SQLite;
 
 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;