core: Rename IO::run_once() to IO::step()

The `run_once()` name is just a historical accident. Furthermore, it now
started to appear elsewhere as well, so let's just call it IO::step() as we
should have from the beginning.
This commit is contained in:
Pekka Enberg
2025-09-09 13:43:36 +03:00
parent 0b91f8a715
commit 2131a04b7d
17 changed files with 42 additions and 42 deletions

View File

@@ -317,7 +317,7 @@ fn test_wal_restart() -> anyhow::Result<()> {
let insert_query = format!("INSERT INTO test VALUES ({i})");
run_query(tmp_db, conn, &insert_query)?;
debug!("inserted {i}");
tmp_db.io.run_once()?;
tmp_db.io.step()?;
Ok(())
}