-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wal checkpoint support #696
Comments
Support for |
checkpoint infra already across the modules in wal, pager, connection. wal moduleLine 415 in 4a41736
connectionLine 394 in 4a41736
It seems that we need to two other things as part of checkpoint result later. Ref this todo.
|
penberg
added a commit
that referenced
this issue
Jan 20, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi folks,
I'd like to create this issue as an umbrella issue for adding WAL checkpoint support. See sqlite doc for wal checkpointing
Rational
todos
Context
pragma wal_checkpoint
and sqlite3_wal_checkpoint*Feel free to comment, I will add the missing ones, or add more details.
The text was updated successfully, but these errors were encountered: