mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 01:58:16 +00:00
![]() Implemeted checksums so that sqlite3 is able to read our WAL. This also helps with future work on proper recovery of WAL. Create some frames with CREATE TABLE and kill the process so that there is no checkpoint. ``` Limbo v0.0.6 Enter ".help" for usage hints. limbo> create table x(x); limbo> [1] 15910 killed cargo run xlimbo.db ``` Now sqlite3 is able to recover from this WAL created in limbo: ``` sqlite3 xlimbo.db SQLite version 3.43.2 2023-10-10 13:08:14 Enter ".help" for usage hints. sqlite> .schema CREATE TABLE x (x); ``` Closes #413 |
||
---|---|---|
.. | ||
btree.rs | ||
buffer_pool.rs | ||
database.rs | ||
mod.rs | ||
pager.rs | ||
sqlite3_ondisk.rs | ||
wal.rs |