From a862400f64903903e1875ed862ec52347e100101 Mon Sep 17 00:00:00 2001 From: Silas Brack Date: Sat, 7 Mar 2026 16:07:07 +0100 Subject: [PATCH] Remove page_size pragma --- src/db.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/db.rs b/src/db.rs index ee835fd..f928d03 100644 --- 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"); }