1
0
mirror of https://github.com/golang/go synced 2024-11-21 21:34:40 -07:00

Add api/next and doc/next files

This commit is contained in:
Jack Christensen 2024-10-22 19:13:46 -05:00
parent 8402f64b97
commit ae87d0c01d
2 changed files with 6 additions and 0 deletions

5
api/next/67546.txt Normal file
View File

@ -0,0 +1,5 @@
pkg database/sql/driver, type RowsColumnScanner interface { Close, Columns, Next, ScanColumn } #67546
pkg database/sql/driver, type RowsColumnScanner interface, Close() error #67546
pkg database/sql/driver, type RowsColumnScanner interface, Columns() []string #67546
pkg database/sql/driver, type RowsColumnScanner interface, Next([]Value) error #67546
pkg database/sql/driver, type RowsColumnScanner interface, ScanColumn(int, interface{}) error #67546

View File

@ -0,0 +1 @@
A database driver may implement [RowsColumnScanner] to entirely override `Scan` behavior.