Add vendor directory and update vendorHash to null
This commit is contained in:
parent
523831cb8d
commit
1e5424c844
778 changed files with 407919 additions and 1 deletions
23
vendor/github.com/pressly/goose/v3/database/sql_extended.go
generated
vendored
Normal file
23
vendor/github.com/pressly/goose/v3/database/sql_extended.go
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package database
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
// DBTxConn is a thin interface for common methods that is satisfied by *sql.DB, *sql.Tx and
|
||||
// *sql.Conn.
|
||||
//
|
||||
// There is a long outstanding issue to formalize a std lib interface, but alas. See:
|
||||
// https://github.com/golang/go/issues/14468
|
||||
type DBTxConn interface {
|
||||
ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error)
|
||||
QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error)
|
||||
QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row
|
||||
}
|
||||
|
||||
var (
|
||||
_ DBTxConn = (*sql.DB)(nil)
|
||||
_ DBTxConn = (*sql.Tx)(nil)
|
||||
_ DBTxConn = (*sql.Conn)(nil)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue