Author: gates
Date: Wed Jun  4 06:42:25 2008
New Revision: 663093

URL: http://svn.apache.org/viewvc?rev=663093&view=rev
Log:
PIG-198 Fixed pig script to pick up hadoop17 library instead of hadoop15 
library.


Modified:
    incubator/pig/trunk/CHANGES.txt
    incubator/pig/trunk/bin/pig

Modified: incubator/pig/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/pig/trunk/CHANGES.txt?rev=663093&r1=663092&r2=663093&view=diff
==============================================================================
--- incubator/pig/trunk/CHANGES.txt (original)
+++ incubator/pig/trunk/CHANGES.txt Wed Jun  4 06:42:25 2008
@@ -308,3 +308,4 @@
 
     PIG-243: Fixing unit tests on windows
 
+    PIG-198: Fixed pig script to pick up hadoop 17 instead of 15 (pi_song via 
gates). 

Modified: incubator/pig/trunk/bin/pig
URL: 
http://svn.apache.org/viewvc/incubator/pig/trunk/bin/pig?rev=663093&r1=663092&r2=663093&view=diff
==============================================================================
--- incubator/pig/trunk/bin/pig (original)
+++ incubator/pig/trunk/bin/pig Wed Jun  4 06:42:25 2008
@@ -17,7 +17,7 @@
 #
 #     PIG_ROOT_LOGGER The root appender. Default is INFO,console
 #
-#     PIG_HADOOP_VERSION Version of hadoop to run with.    Default is 15 
(0.15).
+#     PIG_HADOOP_VERSION Version of hadoop to run with.    Default is 17 
(0.17).
 
 cygwin=false
 case "`uname`" in
@@ -118,8 +118,8 @@
     CLASSPATH=${CLASSPATH}:$f;
 done
 
-# Set the version for Hadoop, default to 15
-PIG_HADOOP_VERSION="${PIG_HADOOP_VERSION:-15}"
+# Set the version for Hadoop, default to 17
+PIG_HADOOP_VERSION="${PIG_HADOOP_VERSION:-17}"
 # add libs to CLASSPATH.    There can be more than one version of the hadoop
 # libraries in the lib dir, so don't blindly add them all.    Only add the one
 # that matche PIG_HADOOP_VERSION.


Reply via email to