mirror of https://github.com/tikv/client-java.git
fix byte overflow (#729)
Signed-off-by: shiyuhang <1136742008@qq.com> Co-authored-by: shiyuhang <1136742008@qq.com>
This commit is contained in:
parent
287317f6a2
commit
a09b06d6b4
|
@ -147,7 +147,7 @@ public class RowV2 {
|
|||
if (this.large) {
|
||||
v = this.colIDs32[h];
|
||||
} else {
|
||||
v = this.colIDs[h];
|
||||
v = this.colIDs[h] & 0xFF;
|
||||
}
|
||||
if (v < colID) {
|
||||
i = h + 1;
|
||||
|
|
Loading…
Reference in New Issue