Merge pull request #6249 from planetscale/jacques_6240

Fix issue #6240.  PR #6130 did not take the header length offset into
This commit is contained in:
Sugu Sougoumarane 2020-06-08 11:09:00 -07:00 коммит произвёл GitHub
Родитель 8f6c690c5b 28b13379c3
Коммит e13de6f450
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1087,7 +1087,7 @@ func (c *Conn) writeBinaryRow(fields []*querypb.Field, row []sqltypes.Value) err
for i, val := range row {
if val.IsNull() {
bytePos := (i+2)/8 + 1
bytePos := (i+2)/8 + 1 + packetHeaderSize
bitPos := (i + 2) % 8
data[bytePos] |= 1 << uint(bitPos)
} else {