Skip to content

Commit

Permalink
api: update next.txt (remove database/sql.NamedParam)
Browse files Browse the repository at this point in the history
Updates golang#18099

Change-Id: I16b4b2dd881d63cbb406d14a4fd960f0a777a452
Reviewed-on: https://go-review.googlesource.com/33760
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
broady committed Dec 1, 2016
1 parent d4b704e commit f1a8a63
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions api/next.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ pkg database/sql, const LevelSnapshot IsolationLevel
pkg database/sql, const LevelWriteCommitted = 3
pkg database/sql, const LevelWriteCommitted IsolationLevel
pkg database/sql, func IsolationContext(context.Context, IsolationLevel) context.Context
pkg database/sql, func Param(string, interface{}) NamedParam
pkg database/sql, func ReadOnlyContext(context.Context) context.Context
pkg database/sql, method (*ColumnType) DatabaseTypeName() string
pkg database/sql, method (*ColumnType) DecimalSize() (int64, int64, bool)
Expand All @@ -100,9 +99,6 @@ pkg database/sql, method (*Tx) QueryRowContext(context.Context, string, ...inter
pkg database/sql, method (*Tx) StmtContext(context.Context, *Stmt) *Stmt
pkg database/sql, type ColumnType struct
pkg database/sql, type IsolationLevel int
pkg database/sql, type NamedParam struct
pkg database/sql, type NamedParam struct, Name string
pkg database/sql, type NamedParam struct, Value interface{}
pkg database/sql/driver, func IsolationFromContext(context.Context) (IsolationLevel, bool)
pkg database/sql/driver, func ReadOnlyFromContext(context.Context) bool
pkg database/sql/driver, type ConnBeginContext interface { BeginContext }
Expand Down Expand Up @@ -253,3 +249,11 @@ pkg testing, method (*T) Name() string
pkg testing, type TB interface, Context() context.Context
pkg testing, type TB interface, Name() string
pkg time, func Until(Time) Duration
pkg database/sql, func Named(string, interface{}) NamedArg
pkg database/sql, type NamedArg struct
pkg database/sql, type NamedArg struct, Name string
pkg database/sql, type NamedArg struct, Value interface{}
pkg math/rand, type Source64 interface { Int63, Seed, Uint64 }
pkg math/rand, type Source64 interface, Int63() int64
pkg math/rand, type Source64 interface, Seed(int64)
pkg math/rand, type Source64 interface, Uint64() uint64

0 comments on commit f1a8a63

Please sign in to comment.