Skip to content

Commit

Permalink
HIVE-2913. Fixes BlockMergeTask to honor Configuration Properties whe…
Browse files Browse the repository at this point in the history
…n used directly. (Thiruvel Thirumoolan via amareshwari)

git-svn-id: https://svn.apache.org/repos/asf/hive/trunk@1308812 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Amareshwari Sriramadasu committed Apr 3, 2012
1 parent 41f51b7 commit 7e99317
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -291,7 +291,6 @@ public static void main(String[] args) {

FileSystem fs = null;
JobConf conf = new JobConf(BlockMergeTask.class);
HiveConf hiveConf = new HiveConf(conf, BlockMergeTask.class);
for (String path : paths) {
try {
Path pathObj = new Path(path);
Expand Down Expand Up @@ -329,6 +328,7 @@ public static void main(String[] args) {
}
}
}
HiveConf hiveConf = new HiveConf(conf, BlockMergeTask.class);

Log LOG = LogFactory.getLog(BlockMergeTask.class.getName());
boolean isSilent = HiveConf.getBoolVar(conf,
Expand Down

0 comments on commit 7e99317

Please sign in to comment.