Skip to content

Commit

Permalink
fix error of insertAlignedTablets (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Beyyes authored Nov 4, 2024
1 parent 4341368 commit 223b9e0
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 223b9e0

Please sign in to comment.