diff --git a/doc/go1.17.html b/doc/go1.17.html index 4561b6ccf5..3534f7be04 100644 --- a/doc/go1.17.html +++ b/doc/go1.17.html @@ -320,11 +320,19 @@ Do not send CLs removing the interior tags from such phrases.
- TODO: https://golang.org/cl/258360: close driver.Connector if it implements io.Closer
+ The DB.Close method now closes
+ the connector field if the type in this field implements the
+ io.Closer interface.
- TODO: https://golang.org/cl/311572: add NullInt16 and NullByte
+ The new
+ NullInt16
+ and
+ NullByte
+ structs represent the int16 and byte values that may be null. These can be used as
+ destinations of the Scan method,
+ similar to NullString.