[Bug][Cache] Map.get with cache key real value. (#6377)

This commit is contained in:
Qi
2021-08-10 10:14:46 +08:00
committed by GitHub
parent 929b33ac0a
commit 5f7c7ce743

View File

@ -159,7 +159,7 @@ public class RowBatchBuilder {
partitionRowList.add(row);
partRowMap.put(cacheKey.realValue(), partitionRowList);
} else {
partRowMap.get(cacheKey).add(row);
partRowMap.get(cacheKey.realValue()).add(row);
}
}