HBASE-1644 Result.row is cached in getRow; this breaks MapReduce
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@793130 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f09b21bae2
commit
2a21d4759a
|
@ -389,6 +389,7 @@ public class Result implements Writable {
|
||||||
public void readFields(final DataInput in)
|
public void readFields(final DataInput in)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
familyMap = null;
|
familyMap = null;
|
||||||
|
row = null;
|
||||||
int numKeys = in.readInt();
|
int numKeys = in.readInt();
|
||||||
this.kvs = new KeyValue[numKeys];
|
this.kvs = new KeyValue[numKeys];
|
||||||
if(numKeys == 0) {
|
if(numKeys == 0) {
|
||||||
|
|
Loading…
Reference in New Issue