mirror of
https://github.com/golang/go.git
synced 2025-05-30 19:52:53 +00:00
database/sql/driver: fix typo in driver.go
ExecerContext -> ExecContext QueryerContext -> QueryContext Change-Id: Id3b1f44de5aa47372d59696523b4379e1fbfc11c GitHub-Last-Rev: 571d01f8052cef27bd5f91a5e95c0735ddf2e327 GitHub-Pull-Request: golang/go#53235 Reviewed-on: https://go-review.googlesource.com/c/go/+/410415 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
0293c51bc5
commit
a32a592c8c
@ -192,9 +192,9 @@ type Execer interface {
|
||||
// DB.Exec will first prepare a query, execute the statement, and then
|
||||
// close the statement.
|
||||
//
|
||||
// ExecerContext may return ErrSkip.
|
||||
// ExecContext may return ErrSkip.
|
||||
//
|
||||
// ExecerContext must honor the context timeout and return when the context is canceled.
|
||||
// ExecContext must honor the context timeout and return when the context is canceled.
|
||||
type ExecerContext interface {
|
||||
ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
|
||||
}
|
||||
@ -219,9 +219,9 @@ type Queryer interface {
|
||||
// DB.Query will first prepare a query, execute the statement, and then
|
||||
// close the statement.
|
||||
//
|
||||
// QueryerContext may return ErrSkip.
|
||||
// QueryContext may return ErrSkip.
|
||||
//
|
||||
// QueryerContext must honor the context timeout and return when the context is canceled.
|
||||
// QueryContext must honor the context timeout and return when the context is canceled.
|
||||
type QueryerContext interface {
|
||||
QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user