We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f71b851 commit 7a49bb7Copy full SHA for 7a49bb7
src/storage/archive_index.rs
@@ -71,6 +71,7 @@ pub(crate) fn create<R: io::Read + io::Seek, P: AsRef<Path>>(
71
let mut archive = zip::ZipArchive::new(zipfile)?;
72
73
let conn = rusqlite::Connection::open(&destination)?;
74
+ conn.execute("PRAGMA synchronous = FULL", ())?;
75
conn.execute("BEGIN", ())?;
76
conn.execute(
77
"
0 commit comments