diff --git a/doc/go1.15.html b/doc/go1.15.html index 80f0e00932..69a20690b9 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -540,6 +540,35 @@ Do not send CLs removing the interior tags from such phrases. +
database/sql
+
+

+ The new DB.SetConnMaxIdleTime + method allows removing a connection from the connection pool after + it has been idle for a period of time, without regard to the total + lifespan of the connection. The DBStats.MaxIdleTimeClosed + field shows the total number of connections closed due to + DB.SetConnMaxIdleTime. +

+ +

+ The new Row.Err getter + allows checking for query errors without calling + Row.Scan. +

+
+
+ +
database/sql/driver
+
+

+ The new Validator + interface may be implemented by Conn to allow drivers + to signal if a connection is valid or if it should be discarded. +

+
+
+
debug/pe