]> Cypherpunks repositories - gostls13.git/commitdiff
doc: update go1.8 release notes after TxOptions change
authorDaniel Theophanes <kardianos@gmail.com>
Sat, 28 Jan 2017 15:36:09 +0000 (07:36 -0800)
committerBrad Fitzpatrick <bradfitz@golang.org>
Sun, 29 Jan 2017 00:49:56 +0000 (00:49 +0000)
Missed the release notes when updating the sql API.

Fixes #18825

Change-Id: I89056d46939ad4fc99590f3434d2881f5764e1b6
Reviewed-on: https://go-review.googlesource.com/35915
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
doc/go1.8.html

index bc40378a6a51257c904820a2a95a03250c6c9bb6..af56ae6b3af1782581b2cbda7a910e9a5151b3f4 100644 (file)
@@ -859,11 +859,12 @@ crypto/x509: return error for missing SerialNumber (CL 27238)
     <p>
       The <a href="/pkg/database/sql#IsolationLevel"><code>IsolationLevel</code></a>
       can now be set when starting a transaction by setting the isolation level
-      on the <code>Context</code> then passing that <code>Context</code> to
-      <a href="/pkg/database/sql#DB.BeginContext"><code>DB.BeginContext</code></a>.
+      on <a href="/pkg/database/sql#TxOptions.Isolation"><code>TxOptions.Isolation</code></a> and passing
+      it to <a href="/pkg/database/sql#DB.BeginTx"><code>DB.BeginTx</code></a>.
       An error will be returned if an isolation level is selected that the driver
       does not support. A read-only attribute may also be set on the transaction
-      with <a href="/pkg/database/sql/#ReadOnlyContext"><code>ReadOnlyContext</code></a>.
+      by setting <a href="/pkg/database/sql/#TxOptions.ReadOnly"><code>TxOptions.ReadOnly</code></a>
+      to true.
     </p>
     <p>
       Queries now expose the SQL column type information for drivers that support it.