Skip to content

Commit

Permalink
FIX: Change BKeyObject constructor in BopGetResultImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
brido4125 authored and jhpark816 committed Mar 29, 2024
1 parent 611e612 commit af91703
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Map<K, Element<V>> getDecodedValue() {
CachedData cachedData = entry.getValue();
if (isByteBKey) {
temp.put(bKey, BTreeUtil.makeBTreeElement(
new BKeyObject((ByteArrayBKey) bKey), cachedData, transcoder));
new BKeyObject(((ByteArrayBKey) bKey).getBytes()), cachedData, transcoder));
} else {
temp.put(bKey, BTreeUtil.makeBTreeElement(
new BKeyObject((Long) bKey), cachedData, transcoder));
Expand Down

0 comments on commit af91703

Please sign in to comment.