We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cbdd13 commit deb4492Copy full SHA for deb4492
client/stmt.go
@@ -94,6 +94,8 @@ func (s *Stmt) write(args ...interface{}) error {
94
if args[i] == nil {
95
nullBitmap[i/8] |= 1 << (uint(i) % 8)
96
paramTypes[i] = []byte{MYSQL_TYPE_NULL}
97
+ paramNames[i] = []byte{0} // length encoded, no name
98
+ paramFlags[i] = []byte{0}
99
continue
100
}
101
0 commit comments