summaryrefslogtreecommitdiff
path: root/internal/db/sqlite/driver.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2024-10-14 20:28:59 +0000
committerLibravatar GitHub <noreply@github.com>2024-10-14 20:28:59 +0000
commit3ad49f77189870e210a7224f72dd65b63974c1dd (patch)
tree818e5bfe77ebd374ab7fc3ede60b0bfdf413c302 /internal/db/sqlite/driver.go
parent[chore] Hopefully final tweak to changelog generation (#3437) (diff)
downloadgotosocial-3ad49f77189870e210a7224f72dd65b63974c1dd.tar.xz
updates exported interface types to match ncruces/go-sqlite3/driver methods (#3440)v0.17.0
Diffstat (limited to 'internal/db/sqlite/driver.go')
-rw-r--r--internal/db/sqlite/driver.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/db/sqlite/driver.go b/internal/db/sqlite/driver.go
index 7467f75be..203edaff3 100644
--- a/internal/db/sqlite/driver.go
+++ b/internal/db/sqlite/driver.go
@@ -198,6 +198,7 @@ type stmtIface interface {
driver.Stmt
driver.StmtExecContext
driver.StmtQueryContext
+ driver.NamedValueChecker
}
// RowsIface is the driver.Rows interface
@@ -207,4 +208,5 @@ type stmtIface interface {
type rowsIface interface {
driver.Rows
driver.RowsColumnTypeDatabaseTypeName
+ driver.RowsColumnTypeNullable
}