acf0337c5e7364b29d32dd36e0f574c9189ff90b
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
1 package # Hide from PAUSE
2   DBIx::Class::SQLMaker::SQLite;
3
4 use base qw( DBIx::Class::SQLMaker );
5
6 #
7 # SQLite does not understand SELECT ... FOR UPDATE
8 # Disable it here
9 sub _lock_select () { '' };
10
11 1;