Author: toffer
Date: Wed Feb  1 17:14:21 2012
New Revision: 1239212

URL: http://svn.apache.org/viewvc?rev=1239212&view=rev
Log:
HCATALOG-246 Exception masked in HCatSplit class (avandana via toffer)

Modified:
    incubator/hcatalog/branches/branch-0.3/CHANGES.txt
    
incubator/hcatalog/branches/branch-0.3/src/java/org/apache/hcatalog/mapreduce/HCatSplit.java

Modified: incubator/hcatalog/branches/branch-0.3/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.3/CHANGES.txt?rev=1239212&r1=1239211&r2=1239212&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.3/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.3/CHANGES.txt Wed Feb  1 17:14:21 2012
@@ -60,6 +60,8 @@ Release 0.3.0 (unreleased changes)
   HCAT-63. RPM package integration with Hadoop (khorgath via hashutosh)
 
   IMPROVEMENTS
+  HCAT-246. Exception masked in HCatSplit class (avandana via toffer)
+
   HCAT-211. Update tar ball installation documentation (vikram.dixit via 
khorgath)
 
   HCAT-219. Adding HBase e2e tests (daijy via toffer)

Modified: 
incubator/hcatalog/branches/branch-0.3/src/java/org/apache/hcatalog/mapreduce/HCatSplit.java
URL: 
http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.3/src/java/org/apache/hcatalog/mapreduce/HCatSplit.java?rev=1239212&r1=1239211&r2=1239212&view=diff
==============================================================================
--- 
incubator/hcatalog/branches/branch-0.3/src/java/org/apache/hcatalog/mapreduce/HCatSplit.java
 (original)
+++ 
incubator/hcatalog/branches/branch-0.3/src/java/org/apache/hcatalog/mapreduce/HCatSplit.java
 Wed Feb  1 17:14:21 2012
@@ -132,7 +132,7 @@ class HCatSplit extends InputSplit imple
             ((Writable)split).readFields(input);
             this.baseSplit = split;
         }catch(Exception e){
-            throw new IOException ("Exception from " +baseSplitClassName + " : 
" + e.getMessage());
+            throw new IOException ("Exception from " + baseSplitClassName, e);
         }
 
         String tableSchemaString = WritableUtils.readString(input);


Reply via email to