fix reference count on punned ColumnFamily Arc

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-07 20:44:40 +00:00
parent 56a1b0e761
commit 5af880e4f4
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ use crate::{cork::Cork, maps, maps::Maps, Engine, Map};
pub struct Database {
pub db: Arc<Engine>,
pub map: Maps,
map: Maps,
}
impl Database {