Fix RT#58554 (make sure FOR X is always the last part of a select)
[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 5use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/;
6
7#
8# SQLite does not understand SELECT ... FOR UPDATE
a6b68a60 9# Disable it here
e5372da4 10sub _lock_select { '' };
09cedb88 11
121;