Skip to content

Commit 51e9b2d

Browse files
committed
NULL string fix fix
1 parent 3e4d413 commit 51e9b2d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packets.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ func (rows *mysqlRows) readRow(dest []driver.Value) (err error) {
483483
continue
484484
} else {
485485
dest[i] = nil
486+
continue
486487
}
487488
}
488489
return // err
@@ -788,6 +789,7 @@ func (rc *mysqlRows) readBinaryRow(dest []driver.Value) (err error) {
788789
continue
789790
} else {
790791
dest[i] = nil
792+
continue
791793
}
792794
}
793795
return // err

0 commit comments

Comments
 (0)