From 701286080053fe762ecd9a04fb6b51b303af54b5 Mon Sep 17 00:00:00 2001 From: pedrocarlo Date: Wed, 30 Jul 2025 14:53:32 -0300 Subject: [PATCH] create separate state machines file --- core/storage/mod.rs | 1 + core/storage/state_machines.rs | 0 2 files changed, 1 insertion(+) create mode 100644 core/storage/state_machines.rs diff --git a/core/storage/mod.rs b/core/storage/mod.rs index a3f396287..c62a2a9df 100644 --- a/core/storage/mod.rs +++ b/core/storage/mod.rs @@ -18,6 +18,7 @@ pub(crate) mod page_cache; #[allow(clippy::arc_with_non_send_sync)] pub(crate) mod pager; pub(crate) mod sqlite3_ondisk; +mod state_machines; #[allow(clippy::arc_with_non_send_sync)] pub(crate) mod wal; diff --git a/core/storage/state_machines.rs b/core/storage/state_machines.rs new file mode 100644 index 000000000..e69de29bb