1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-06-27 16:35:59 +00:00

WIP improvement: much better state storage

This commit is contained in:
Timo Kösters 2021-08-01 15:14:54 +02:00 committed by Jonas Zohren
parent f29a6d7945
commit 0b073c6534
3 changed files with 345 additions and 10 deletions

View file

@ -223,10 +223,7 @@ impl Tree for SqliteTable {
let statement = Box::leak(Box::new(
guard
.prepare(&format!(
"SELECT key, value FROM {} ORDER BY key ASC",
&self.name
))
.prepare(&format!("SELECT key, value FROM {} ORDER BY key ASC", &self.name))
.unwrap(),
));