Skip to content

Commit 3f8fe99

Browse files
committed
Blob I/O: fix TODO
1 parent 7d10860 commit 3f8fe99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blob_io_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ type driverConnCallback func(*testing.T, *SQLiteConn)
2626

2727
func blobTestData(t *testing.T, dbname string, rowid int64, blob []byte, c driverConnCallback) {
2828

29-
// TODO use :memory: for compatibility with SQLite versions < 3.37.0.
30-
// Use memdb vfs for more recent versions.
29+
// This test uses :memory: for compatibility with SQLite versions < 3.37.0.
30+
// Using memdb vfs is the right way to do this for more recent versions.
3131

3232
// db, err := sql.Open("sqlite3", "file:/"+dbname+"?vfs=memdb")
3333
db, err := sql.Open("sqlite3", ":memory:")

0 commit comments

Comments
 (0)