Scope
Switch between journal modes:
PRAGMA journal_mode=WAL; -- journal → WAL
PRAGMA journal_mode=DELETE; -- WAL → journal
Implementation
Journal → WAL
- Checkpoint any pending journal
- Create WAL file + SHM
- Set header flags
WAL → Journal
- Checkpoint all WAL frames
- Delete WAL + SHM files
- Clear header flags
Phase
V6.3 (Concurrency)
Estimate
1 day
Scope
Switch between journal modes:
Implementation
Journal → WAL
WAL → Journal
Phase
V6.3 (Concurrency)
Estimate
1 day