diff --git a/doc/go1.8.html b/doc/go1.8.html index bc40378a6a..af56ae6b3a 100644 --- a/doc/go1.8.html +++ b/doc/go1.8.html @@ -859,11 +859,12 @@ crypto/x509: return error for missing SerialNumber (CL 27238)
The IsolationLevel
can now be set when starting a transaction by setting the isolation level
- on the Context then passing that Context to
- DB.BeginContext.
+ on TxOptions.Isolation and passing
+ it to DB.BeginTx.
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 ReadOnlyContext.
+ by setting TxOptions.ReadOnly
+ to true.
Queries now expose the SQL column type information for drivers that support it.