HBASE-14073 TestRemoteTable.testDelete failed in the latest trunk code.(Jingcheng)

This commit is contained in:
anoopsjohn 2015-07-14 14:52:50 +05:30
parent a3d30892b4
commit 2f327c9110
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ public class RemoteHTable implements Table {
if (o instanceof byte[]) {
sb.append(Bytes.toStringBinary((byte[])o));
} else if (o instanceof KeyValue) {
sb.append(Bytes.toStringBinary(((KeyValue) o).getRowArray(),
((KeyValue) o).getRowOffset(), ((KeyValue) o).getRowLength()));
sb.append(Bytes.toStringBinary(((KeyValue) o).getQualifierArray(),
((KeyValue) o).getQualifierOffset(), ((KeyValue) o).getQualifierLength()));
} else {
throw new RuntimeException("object type not handled");
}