Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static AttributeValue toPhysicalHashKey(String context, String virtualTab
}

public static MtContextAndTable fromPhysicalHashKey(AttributeValue value) {
ByteBuffer byteBuffer = value.getB().rewind();
ByteBuffer byteBuffer = value.getB().duplicate().rewind();
byte[] contextBytes = new byte[byteBuffer.getShort()];
byteBuffer.get(contextBytes);
byte[] tableNameBytes = new byte[byteBuffer.getShort()];
Expand Down