mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-06 01:34:21 +01:00
Emit the following code sequence for `BEGIN IMMEDIATE`: ``` limbo> EXPLAIN BEGIN IMMEDIATE; addr opcode p1 p2 p3 p4 p5 comment ---- ----------------- ---- ---- ---- ------------- -- ------- 0 Init 0 4 0 0 Start at 4 1 Transaction 0 1 0 0 2 AutoCommit 0 0 0 0 auto_commit=false, rollback=false 3 Halt 0 0 0 0 4 Goto 0 1 0 0 ``` Please note that SQLite emits *two* transaction instructions -- one for main database and one for temporary tables. However, since we don't support the latter, we only emit one transaction instruction.