Skip to content

Commit

Permalink
remove Value method
Browse files Browse the repository at this point in the history
  • Loading branch information
br3w0r committed Mar 27, 2024
1 parent 9e370fb commit e5f6528
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions dbscan/rowscanner.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package dbscan

import (
"database/sql/driver"
"fmt"
"reflect"
)
Expand Down Expand Up @@ -130,10 +129,6 @@ func (*noOpScanType) Scan(value interface{}) error {
return nil
}

func (noOpScanType) Value() (driver.Value, error) {
return nil, nil
}

func (rs *RowScanner) scanStruct(structValue reflect.Value) error {
scans := make([]interface{}, len(rs.columns))
for i, column := range rs.columns {
Expand Down

0 comments on commit e5f6528

Please sign in to comment.