mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-04 00:44:19 +01:00
After reading the fine print, SQLite documentation explains that `BEGIN IMMEDIATE` and `BEGIN EXCLUSIVE` are the same thing in WAL mode: https://www.sqlite.org/lang_transaction.html As that's the only mode we support, let's just add code generation for `BEGIN EXCLUSIVE`. Fixes #1002