Files
turso/core/vdbe
Jussi Saurio c752058a97 VDBE: introduce state machine for op_idx_insert for more granular IO control
Separates cursor.key_exists_in_index() into a state machine. The problem with
the main branch implementation is this:

`return_if_io!(seek)`
`return_if_io!(cursor.record())`

The latter may yield on IO and cause the seek to start over, causing an infinite
loop. With an explicit state machine we can control and prevent this.
2025-07-09 11:43:18 +03:00
..
2025-07-08 22:57:20 +08:00
2025-07-08 22:57:20 +08:00
2025-05-15 09:59:46 +03:00