-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
Based on a discussion today raising this issue so that it can act as a placeholder. I can submit a patch too.
The HBase-2.0 removes some of the deprcated API like KV.getValue(), kv.getRow() and the Result.raw() APIs. We can modify the client code accordingly so that it compiles with HBase-2.0 and anyway it would work with HBase-1.0 also.
{code}
-
Bytes.toString(kv.getQualifier()), -
new ByteArrayByteIterator(kv.getValue())); -
Bytes.toString(kv.getQualifierArray(), kv.getQualifierOffset(), kv.getQualifierLength()), -
{code}
new ByteArrayByteIterator(kv.getValueArray(), kv.getValueOffset(), kv.getValueLength()));
Metadata
Metadata
Assignees
Labels
No labels