Checksum VFS. (#176)

This commit is contained in:
Nuno Cruces
2024-10-25 00:12:29 +01:00
committed by GitHub
parent 64e2500ca8
commit 75c1dbb052
24 changed files with 499 additions and 41 deletions

Binary file not shown.

BIN
tests/testdata/wal.db vendored

Binary file not shown.

View File

@@ -77,7 +77,7 @@ func TestWAL_readonly(t *testing.T) {
// Select the data using the second (readonly) connection.
var name string
err = db2.QueryRow("SELECT name FROM t").Scan(&name)
err = db2.QueryRow(`SELECT name FROM t`).Scan(&name)
if err != nil {
t.Fatal(err)
}
@@ -95,7 +95,7 @@ func TestWAL_readonly(t *testing.T) {
}
// Select the data using the second (readonly) connection.
err = db2.QueryRow("SELECT name FROM t").Scan(&name)
err = db2.QueryRow(`SELECT name FROM t`).Scan(&name)
if err != nil {
t.Fatal(err)
}