Skip to content

Commit deb4492

Browse files
committed
Fix nil args
1 parent 4cbdd13 commit deb4492

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

client/stmt.go

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ func (s *Stmt) write(args ...interface{}) error {
9494
if args[i] == nil {
9595
nullBitmap[i/8] |= 1 << (uint(i) % 8)
9696
paramTypes[i] = []byte{MYSQL_TYPE_NULL}
97+
paramNames[i] = []byte{0} // length encoded, no name
98+
paramFlags[i] = []byte{0}
9799
continue
98100
}
99101

0 commit comments

Comments
 (0)