HBASE-1526 mapreduce fixup; commit trivial fix for HBaseTestCase
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@785052 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a8167fcffa
commit
ac9a9e01c9
|
@ -295,7 +295,8 @@ public abstract class HBaseTestCase extends TestCase {
|
||||||
put.setTimeStamp(ts);
|
put.setTimeStamp(ts);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
put.add(Bytes.toBytes(column), null, t);
|
byte[][] split = KeyValue.parseColumn(Bytes.toBytes(column));
|
||||||
|
put.add(split[0], split[1], t);
|
||||||
updater.put(put);
|
updater.put(put);
|
||||||
count++;
|
count++;
|
||||||
} catch (RuntimeException ex) {
|
} catch (RuntimeException ex) {
|
||||||
|
|
Loading…
Reference in New Issue