commit a862400f64903903e1875ed862ec52347e100101
parent d363c0034729974dfd03038542d92bb8654f7571
Author: Silas Brack <silas@teton.ai>
Date: Sat, 7 Mar 2026 16:07:07 +0100
Remove page_size pragma
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/db.rs b/src/db.rs
@@ -17,8 +17,7 @@ fn apply_pragmas(conn: &Connection) {
PRAGMA busy_timeout = 5000;
PRAGMA temp_store = memory;
PRAGMA cache_size = -64000;
- PRAGMA mmap_size = 268435456;
- PRAGMA page_size = 4096;",
+ PRAGMA mmap_size = 268435456;",
)
.expect("failed to set pragmas");
}