Files
turso/core
Pekka Enberg 9fff9f6081 core/translate: BEGIN IMMEDIATE support
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.
2025-02-14 10:26:31 +02:00
..
2025-02-11 09:05:34 -04:00
2025-02-11 09:03:36 -04:00
2025-02-14 10:26:31 +02:00
2025-01-28 14:55:38 -05:00
2025-02-11 09:06:26 -04:00
2025-02-14 10:26:31 +02:00
2025-02-06 23:46:00 -03:00
2025-01-28 14:55:38 -05:00
2025-02-14 10:26:31 +02:00
2025-02-11 09:03:36 -04:00
2025-02-06 13:40:34 +02:00
2024-12-24 18:04:30 +01:00
2025-02-11 09:03:36 -04:00
2025-02-09 18:08:29 +02:00