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:
Andrew Kyle Purtell 2009-06-16 01:52:48 +00:00
parent a8167fcffa
commit ac9a9e01c9
1 changed files with 2 additions and 1 deletions

View File

@ -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) {