Skip to content

Commit

Permalink
fix error of insertAlignedTablets
Browse files Browse the repository at this point in the history
  • Loading branch information
Beyyes committed Nov 4, 2024
1 parent 4341368 commit a9ebffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ func (s *Session) genInsertTabletsReq(tablets []*Tablet, isAligned bool) (*rpc.T
valuesList[index] = values
timestampsList[index] = tablet.GetTimestampBytes()
typesList[index] = tablet.getDataTypes()
sizeList[index] = int32(tablet.maxRowNumber)
sizeList[index] = int32(tablet.RowSize)
}
request := rpc.TSInsertTabletsReq{
SessionId: s.sessionId,
Expand Down

0 comments on commit a9ebffb

Please sign in to comment.