From d7a6d48d8c72b248d6d7e65628bced10c3fb28c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20L=C3=B3pez?= Date: Sat, 8 Feb 2025 21:21:07 +0100 Subject: [PATCH] core: make storage::wal::CheckPointMode public, because it is needed to implement trait Wal --- core/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lib.rs b/core/lib.rs index 956a77a9f..aa5f90543 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -44,6 +44,7 @@ use storage::page_cache::DumbLruPageCache; use storage::pager::allocate_page; pub use storage::pager::PageRef; use storage::sqlite3_ondisk::{DatabaseHeader, DATABASE_HEADER_SIZE}; +pub use storage::wal::CheckpointMode; pub use storage::wal::WalFile; pub use storage::wal::WalFileShared; use types::OwnedValue;