From 1af88c405204a834c178af4bd65ea560faf5ecb3 Mon Sep 17 00:00:00 2001 From: Toni Spets Date: Sat, 16 Dec 2023 12:04:14 +0200 Subject: [PATCH] Restore without SQLITE_FCNTL_PERSIST_WAL (#529) --- db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.go b/db.go index a6f83ca..48e2a5e 100644 --- a/db.go +++ b/db.go @@ -1485,7 +1485,7 @@ func applyWAL(ctx context.Context, index int, dbPath string) error { } // Open SQLite database and force a truncating checkpoint. - d, err := sql.Open("litestream-sqlite3", dbPath) + d, err := sql.Open("sqlite3", dbPath) if err != nil { return err }