mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-07 17:04:56 +01:00
remove the execer and queryer conformance requirements (#2636)
This commit is contained in:
parent
ede8f43635
commit
3481a09b47
@ -34,6 +34,13 @@
|
||||
// global SQL driver instances.
|
||||
postgresDriver = pgx.GetDefaultDriver()
|
||||
sqliteDriver = getSQLiteDriver()
|
||||
|
||||
// check the postgres connection
|
||||
// conforms to our conn{} interface.
|
||||
// (note SQLite doesn't export their
|
||||
// conn type, and gets checked in
|
||||
// tests very regularly anywho).
|
||||
_ conn = (*pgx.Conn)(nil)
|
||||
)
|
||||
|
||||
//go:linkname getSQLiteDriver modernc.org/sqlite.newDriver
|
||||
@ -278,9 +285,7 @@ func (stmt *SQLiteStmt) QueryContext(ctx context.Context, args []driver.NamedVal
|
||||
type conn interface {
|
||||
driver.Conn
|
||||
driver.ConnPrepareContext
|
||||
driver.Execer //nolint:staticcheck
|
||||
driver.ExecerContext
|
||||
driver.Queryer //nolint:staticcheck
|
||||
driver.QueryerContext
|
||||
driver.ConnBeginTx
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user