Author: olga
Date: Wed Nov 28 11:04:02 2007
New Revision: 599096

URL: http://svn.apache.org/viewvc?rev=599096&view=rev
Log:
Uncommented help (PIG-33)

Modified:
    incubator/pig/trunk/CHANGES.txt
    incubator/pig/trunk/src/org/apache/pig/tools/grunt/GruntParser.jj

Modified: incubator/pig/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/pig/trunk/CHANGES.txt?rev=599096&r1=599095&r2=599096&view=diff
==============================================================================
--- incubator/pig/trunk/CHANGES.txt (original)
+++ incubator/pig/trunk/CHANGES.txt Wed Nov 28 11:04:02 2007
@@ -24,3 +24,5 @@
        PIG-17 integrated with Hadoop 0.15 (olgan@)
 
        PIG-20 Added custom comparator functions for order by (phunt via gates)
+
+       PIG-33 Help was commented out - uncommented (olgan@)

Modified: incubator/pig/trunk/src/org/apache/pig/tools/grunt/GruntParser.jj
URL: 
http://svn.apache.org/viewvc/incubator/pig/trunk/src/org/apache/pig/tools/grunt/GruntParser.jj?rev=599096&r1=599095&r2=599096&view=diff
==============================================================================
--- incubator/pig/trunk/src/org/apache/pig/tools/grunt/GruntParser.jj (original)
+++ incubator/pig/trunk/src/org/apache/pig/tools/grunt/GruntParser.jj Wed Nov 
28 11:04:02 2007
@@ -190,19 +190,19 @@
        private void printHelp() 
        {
                System.err.println("Commands:");
-               //System.err.println("<pig latin statement>;");
+               System.err.println("<pig latin statement>;");
                System.err.println("store <alias> into <filename> [using 
<functionSpec>]");
-               //System.err.println("dump <alias>");
-               //System.err.println("describe <alias>");
-               //System.err.println("kill <job_id>");
-               //System.err.println("ls <path>\r\ndu <path>\r\nmv <src> 
<dst>\r\ncp <src> <dst>\r\nrm <src>");
-               //System.err.println("copyFromLocal <localsrc> <dst>\r\ncd 
<dir>\r\npwd");
-               //System.err.println("cat <src>\r\ncopyToLocal <src> 
<localdst>\r\nmkdir <path>");
-               //System.err.println("cd <path>");
-               //System.err.println("define <functionAlias> <functionSpec>");
-               //System.err.println("register <udfJar>");
-               //System.err.println("set key value");
-               //System.err.println("quit");
+               System.err.println("dump <alias>");
+               System.err.println("describe <alias>");
+               System.err.println("kill <job_id>");
+               System.err.println("ls <path>\r\ndu <path>\r\nmv <src> 
<dst>\r\ncp <src> <dst>\r\nrm <src>");
+               System.err.println("copyFromLocal <localsrc> <dst>\r\ncd 
<dir>\r\npwd");
+               System.err.println("cat <src>\r\ncopyToLocal <src> 
<localdst>\r\nmkdir <path>");
+               System.err.println("cd <path>");
+               System.err.println("define <functionAlias> <functionSpec>");
+               System.err.println("register <udfJar>");
+               System.err.println("set key value");
+               System.err.println("quit");
        }
 
        private void processMove(String src, String dst) throws IOException


Reply via email to