HBASE-987 We need a Hbase Partitioner for TableMapReduceUtil.initTableReduceJob MR Jobs; fix broke build

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@713071 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-11-11 15:59:48 +00:00
parent 2492b8b659
commit 78ce1b10c9
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ public class TableMapReduceUtil {
* @throws IOException * @throws IOException
*/ */
public static void initTableReduceJob(String table, public static void initTableReduceJob(String table,
Class<? extends TableReduce> reducer, JobConf job) { Class<? extends TableReduce> reducer, JobConf job)
throws IOException {
initTableReduceJob(table, reducer, job, null); initTableReduceJob(table, reducer, job, null);
} }