1
0
mirror of https://github.com/golang/go synced 2024-09-25 05:20:13 -06:00

database/sql: fix Rows.Columns() documentation

Fixes #27202

Change-Id: I3e3bdb1c8d655deb6fdd374868fcac0621f8fa0c
This commit is contained in:
Alexey Palazhchenko 2018-09-03 19:19:28 +03:00
parent 5188c87c95
commit 64457e12ce

View File

@ -2735,8 +2735,7 @@ func (rs *Rows) Err() error {
}
// Columns returns the column names.
// Columns returns an error if the rows are closed, or if the rows
// are from QueryRow and there was a deferred error.
// Columns returns an error if the rows are closed.
func (rs *Rows) Columns() ([]string, error) {
rs.closemu.RLock()
defer rs.closemu.RUnlock()