Skip to content

Commit

Permalink
HIVE-1692. FetchOperator.getInputFormatFromCache hides causal excepti…
Browse files Browse the repository at this point in the history
…on (Philip Zeyliger via cws)

git-svn-id: https://svn.apache.org/repos/asf/hive/trunk@1056574 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
cwsteinbach committed Jan 8, 2011
1 parent 790088b commit 08f48c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ Trunk - Unreleased

IMPROVEMENTS

HIVE-1692. FetchOperator.getInputFormatFromCache hides causal exception (Philip Zeyliger via cws)

HIVE-1899 Add a factory method for creating a synchronized wrapper for IMetaStoreClient (John Sichi via cws)

HIVE-1852 Reduce unnecessary DFSClient.rename() calls (Ning Zhang via jssarma)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ static InputFormat<WritableComparable, Writable> getInputFormatFromCache(Class i
inputFormats.put(inputFormatClass, newInstance);
} catch (Exception e) {
throw new IOException("Cannot create an instance of InputFormat class "
+ inputFormatClass.getName() + " as specified in mapredWork!");
+ inputFormatClass.getName() + " as specified in mapredWork!", e);
}
}
return inputFormats.get(inputFormatClass);
Expand Down

0 comments on commit 08f48c9

Please sign in to comment.