From bce66299ab0b290326ed57ab09546397c5b47de6 Mon Sep 17 00:00:00 2001 From: Nuno Cruces Date: Wed, 17 Jan 2024 10:52:47 +0000 Subject: [PATCH] Remove flag. --- ext/blobio/blob.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/blobio/blob.go b/ext/blobio/blob.go index a9a9c26..bf528ec 100644 --- a/ext/blobio/blob.go +++ b/ext/blobio/blob.go @@ -30,9 +30,9 @@ import ( // // https://sqlite.org/c3ref/blob.html func Register(db *sqlite3.Conn) { - db.CreateFunction("readblob", 6, sqlite3.DIRECTONLY, readblob) - db.CreateFunction("writeblob", 6, sqlite3.DIRECTONLY, writeblob) - db.CreateFunction("openblob", -1, sqlite3.DIRECTONLY, openblob) + db.CreateFunction("readblob", 6, 0, readblob) + db.CreateFunction("writeblob", 6, 0, writeblob) + db.CreateFunction("openblob", -1, 0, openblob) } // OpenCallback is the type for the openblob callback.