pub fn backfill(
db: &mut Db,
wal: &Wal,
) -> Result<(), Box<dyn Error + Send + Sync>>Expand description
Moving content from WAL to a database (called “backfilling”). Arguments:
db: database to backfillwal: WAL to apply Warning: risks of corruption if used on a live database.