You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by ga...@apache.org on 2011/06/13 17:07:37 UTC

svn commit: r1135177 - in /incubator/hcatalog/trunk: CHANGES.txt bin/hcat.sh

Author: gates
Date: Mon Jun 13 17:07:37 2011
New Revision: 1135177

URL: http://svn.apache.org/viewvc?rev=1135177&view=rev
Log:
HCATALOG-41 Changes to hcat.sh in HCATALOG-20 broke the -e option

Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/bin/hcat.sh

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1135177&r1=1135176&r2=1135177&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Mon Jun 13 17:07:37 2011
@@ -35,6 +35,9 @@ Trunk (unreleased changes)
   OPTIMIZATIONS
 
   BUG FIXES
+
+    HCAT-41. Changes to hcat.sh in HCATALOG-20 broke the -e option (gates)
+
     HCAT-12. Get trunk to build. (hashutosh)
 
     HCAT-17. Shouldn't be able to add an HCatFieldSchema with the same name as 

Modified: incubator/hcatalog/trunk/bin/hcat.sh
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/bin/hcat.sh?rev=1135177&r1=1135176&r2=1135177&view=diff
==============================================================================
--- incubator/hcatalog/trunk/bin/hcat.sh (original)
+++ incubator/hcatalog/trunk/bin/hcat.sh Mon Jun 13 17:07:37 2011
@@ -86,7 +86,7 @@ if [ "$debug" == "true" ]; then
 	echo "with HADOOP_CLASSPATH set to ($HADOOP_CLASSPATH)"
 	echo "and HADOOP_OPTS set to ($HADOOP_OPTS)"
 else
-	exec $HADOOP_HOME/bin/hadoop jar  $HCAT_JAR org.apache.hcatalog.cli.HCatCli $remaining
+	exec $HADOOP_HOME/bin/hadoop jar  $HCAT_JAR org.apache.hcatalog.cli.HCatCli "$@"
 fi
 
 # Above is the recommended way to launch hcatalog cli. If it doesnt work, you can try the following: