This commit is contained in:
Lunny Xiao 2021-07-18 23:12:03 +08:00
parent c98a8492db
commit f842ff5d8c
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ func (engine *Engine) scan(rows *core.Rows, fields []string, types []*sql.Column
var scanResults = make([]interface{}, 0, len(types))
var replaces = make([]bool, 0, len(types))
var err error
for i, v := range vv {
for _, v := range vv {
var replaced bool
var scanResult interface{}
switch t := v.(type) {