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:
Michael Stack 2009-07-10 22:45:53 +00:00
parent f09b21bae2
commit 2a21d4759a
1 changed files with 1 additions and 0 deletions

View File

@ -389,6 +389,7 @@ public class Result implements Writable {
public void readFields(final DataInput in)
throws IOException {
familyMap = null;
row = null;
int numKeys = in.readInt();
this.kvs = new KeyValue[numKeys];
if(numKeys == 0) {