mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-31 23:14:21 +01:00
Wire pragma wal_checkpoint to checkpoint infra - add basic support for parsing and instruction emitting `pragma wal_checkpoint;` - checkpoint opcode for instruction - checkpoint execution in `virtual machine` - cli test Part of #696. Before ``` limbo> pragma wal_checkpoint; × Parse error: Not a valid pragma name ``` After ``` Enter ".help" for usage hints. limbo> pragma wal_checkpoint; 0|0|0 ``` ``` Closes #694