Remove page_size pragma

This commit is contained in:
Silas Brack 2026-03-07 16:07:07 +01:00
parent d363c00347
commit a862400f64

View file

@ -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");
}