Commit | Line | Data |
---|---|---|
09cedb88 | 1 | package # Hide from PAUSE |
d5dedbd6 | 2 | DBIx::Class::SQLMaker::SQLite; |
09cedb88 | 3 | |
4a233f30 | 4 | use warnings; |
5 | use strict; | |
6 | ||
d5dedbd6 | 7 | use base qw( DBIx::Class::SQLMaker ); |
09cedb88 | 8 | |
9 | # | |
10 | # SQLite does not understand SELECT ... FOR UPDATE | |
a6b68a60 | 11 | # Disable it here |
1645dd48 | 12 | sub _lock_select () { '' }; |
09cedb88 | 13 | |
14 | 1; |