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