Skip to content

Commit a76988f

Browse files
committed
ci test, since tests pass on my machine
1 parent 9bda993 commit a76988f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

replication/row_event.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,9 +1154,11 @@ func (e *RowsEvent) decodeImage(data []byte, bitmap []byte, rowImageType EnumRow
11541154
for ; col+8 <= int(e.ColumnCount); col += 8 {
11551155
count += bits.OnesCount8(bitmap[col>>3])
11561156
}
1157+
fmt.Println(col, count, e.ColumnCount)
11571158
if col < int(e.ColumnCount) {
11581159
count += bits.OnesCount8(bitmap[col>>3] & byte((1<<int(e.ColumnCount)-col)-1))
11591160
}
1161+
fmt.Println(col, count, e.ColumnCount)
11601162
skips := make([]int, 0, int(e.ColumnCount)-count)
11611163
count = bitmapByteSize(count)
11621164

0 commit comments

Comments
 (0)