We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54de390 commit a227a6aCopy full SHA for a227a6a
src/main/java/org/tikv/common/codec/TableCodecV2.java
@@ -87,7 +87,7 @@ protected static Object[] decodeObjects(byte[] value, Handle handle, TiTableInfo
87
if (decodedDataMap.containsKey(col.getId())) {
88
continue;
89
} else if (col.isPrimaryKey() && tableInfo.isPkHandle()) {
90
- decodedDataMap.put(col.getId(), handle.data());
+ decodedDataMap.put(col.getId(), handle.data()[0]);
91
92
}
93
RowV2.ColIDSearchResult searchResult = rowV2.findColID(col.getId());
0 commit comments