aboutsummaryrefslogtreecommitdiff
path: root/api/next.txt
diff options
context:
space:
mode:
authorChris Broadfoot <cbro@golang.org>2016-11-30 18:37:18 -0800
committerChris Broadfoot <cbro@golang.org>2016-12-01 02:41:50 +0000
commitf1a8a63daba8e3ed75e912599d8bb38eed6b745c (patch)
tree8cc92bca2ebab4025c7ee2e6b7e1389f90c29afe /api/next.txt
parentd4b704e110dea8395d107f5fd3be9f3cf2e8d161 (diff)
downloadgo-f1a8a63daba8e3ed75e912599d8bb38eed6b745c.tar.gz
go-f1a8a63daba8e3ed75e912599d8bb38eed6b745c.zip
api: update next.txt (remove database/sql.NamedParam)
Updates #18099 Change-Id: I16b4b2dd881d63cbb406d14a4fd960f0a777a452 Reviewed-on: https://go-review.googlesource.com/33760 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'api/next.txt')
-rw-r--r--api/next.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/api/next.txt b/api/next.txt
index 449e408579..6677e48fa9 100644
--- a/api/next.txt
+++ b/api/next.txt
@@ -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)
@@ -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 }
@@ -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