Skip to content

Commit

Permalink
ssqlite3: use "begin immediate" to avoid later fights over upgrading …
Browse files Browse the repository at this point in the history
…to write

fixes #14564
  • Loading branch information
Habbie committed Aug 21, 2024
1 parent 5dd2221 commit 63851a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdns/ssqlite3.cc
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ int SSQLite3::busyHandler([[maybe_unused]] void* userData, [[maybe_unused]] int

void SSQLite3::startTransaction()
{
execute("begin");
execute("begin immediate");
m_in_transaction = true;
}

Expand Down

0 comments on commit 63851a8

Please sign in to comment.