Stop shipping world writeable files in our tarball
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
CommitLineData
09cedb88 1package # Hide from PAUSE
d5dedbd6 2 DBIx::Class::SQLMaker::SQLite;
09cedb88 3
d5dedbd6 4use base qw( DBIx::Class::SQLMaker );
09cedb88 5
6#
7# SQLite does not understand SELECT ... FOR UPDATE
a6b68a60 8# Disable it here
1645dd48 9sub _lock_select () { '' };
09cedb88 10
111;