Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LiteCore/Storage/SQLiteDataFile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ namespace litecore {

void SQLiteDataFile::_beginTransaction(ExclusiveTransaction*) {
checkOpen();
_exec("BEGIN");
_exec("BEGIN IMMEDIATE");
}

void SQLiteDataFile::_endTransaction(ExclusiveTransaction* t, bool commit) {
Expand Down
Loading