1
0
mirror of https://github.com/golang/go synced 2024-11-21 22:04:39 -07:00

Remove superfluous comment

This commit is contained in:
Jack Christensen 2024-11-16 08:25:12 -06:00
parent 20cc6f7de0
commit 0a38201765

View File

@ -4252,8 +4252,6 @@ type rcsRows struct {
func (r *rcsRows) ScanColumn(dest any, index int) error {
switch d := dest.(type) {
// Override int64 to set a specific value. This will prove that
// RowsColumnScanner is overriding normal database/sql Scan behavior.
case *int64:
*d = 42
return nil