Close database/sql connections created through ConnPool

database/sql driver created through stdlib.OpenFromConnPool closes connections
when requested by database/sql rather than release to underlying connection
pool.
conn-pool-reset
Jack Christensen 2017-06-08 19:14:03 -05:00
parent 6b2cb6800e
commit cd16be9308
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# Unreleased
## Fixes
* database/sql driver created through stdlib.OpenFromConnPool closes connections when requested by database/sql rather than release to underlying connection pool.
# 2.11.0 (June 5, 2017)
## Fixes

View File

@ -180,12 +180,12 @@ func (c *Conn) Prepare(query string) (driver.Stmt, error) {
}
func (c *Conn) Close() error {
err := c.conn.Close()
if c.pool != nil {
c.pool.Release(c.conn)
return nil
}
return c.conn.Close()
return err
}
func (c *Conn) Begin() (driver.Tx, error) {