Return-Path: X-Original-To: apmail-pig-commits-archive@www.apache.org Delivered-To: apmail-pig-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BC19E11B3F for ; Mon, 9 Jun 2014 05:28:22 +0000 (UTC) Received: (qmail 60025 invoked by uid 500); 9 Jun 2014 05:28:22 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 59991 invoked by uid 500); 9 Jun 2014 05:28:22 -0000 Mailing-List: contact commits-help@pig.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pig.apache.org Delivered-To: mailing list commits@pig.apache.org Received: (qmail 59984 invoked by uid 99); 9 Jun 2014 05:28:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Jun 2014 05:28:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Jun 2014 05:28:23 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 20CB023888D2; Mon, 9 Jun 2014 05:27:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1601313 - in /pig/trunk: CHANGES.txt build.xml contrib/zebra/ src/org/apache/pig/data/DataReaderWriter.java test/e2e/pig/drivers/TestDriverScript.pm Date: Mon, 09 Jun 2014 05:27:57 -0000 To: commits@pig.apache.org From: cheolsoo@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140609052758.20CB023888D2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cheolsoo Date: Mon Jun 9 05:27:57 2014 New Revision: 1601313 URL: http://svn.apache.org/r1601313 Log: PIG-3996: Delete zebra from svn (cheolsoo) Removed: pig/trunk/contrib/zebra/ Modified: pig/trunk/CHANGES.txt pig/trunk/build.xml pig/trunk/src/org/apache/pig/data/DataReaderWriter.java pig/trunk/test/e2e/pig/drivers/TestDriverScript.pm Modified: pig/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1601313&r1=1601312&r2=1601313&view=diff ============================================================================== --- pig/trunk/CHANGES.txt (original) +++ pig/trunk/CHANGES.txt Mon Jun 9 05:27:57 2014 @@ -177,6 +177,8 @@ PIG-3882: Multiquery off mode execution BUG FIXES +PIG-3996: Delete zebra from svn (cheolsoo) + PIG-3991: TestErrorHandling.tesNegative7 is broken in trunk/branch-0.13 (cheolsoo) PIG-3990: ant docs is broken in trunk/branch-0.13 (cheolsoo) Modified: pig/trunk/build.xml URL: http://svn.apache.org/viewvc/pig/trunk/build.xml?rev=1601313&r1=1601312&r2=1601313&view=diff ============================================================================== --- pig/trunk/build.xml (original) +++ pig/trunk/build.xml Mon Jun 9 05:27:57 2014 @@ -458,10 +458,6 @@ - - - - @@ -629,24 +625,19 @@ - + - + - - - - - @@ -920,14 +911,6 @@ - - - - - - - - @@ -1098,7 +1081,7 @@ - + @@ -1704,10 +1687,6 @@ - - - - Modified: pig/trunk/src/org/apache/pig/data/DataReaderWriter.java URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/data/DataReaderWriter.java?rev=1601313&r1=1601312&r2=1601313&view=diff ============================================================================== --- pig/trunk/src/org/apache/pig/data/DataReaderWriter.java (original) +++ pig/trunk/src/org/apache/pig/data/DataReaderWriter.java Mon Jun 9 05:27:57 2014 @@ -37,7 +37,7 @@ import org.joda.time.DateTimeZone; * This class was used to handle reading and writing of intermediate * results of data types. Now that functionality is in {@link BinInterSedes} * This class could also be used for storing permanent results, it used - * by BinStorage and Zebra through DefaultTuple class. + * by BinStorage through DefaultTuple class. */ @InterfaceAudience.Private @InterfaceStability.Stable Modified: pig/trunk/test/e2e/pig/drivers/TestDriverScript.pm URL: http://svn.apache.org/viewvc/pig/trunk/test/e2e/pig/drivers/TestDriverScript.pm?rev=1601313&r1=1601312&r2=1601313&view=diff ============================================================================== --- pig/trunk/test/e2e/pig/drivers/TestDriverScript.pm (original) +++ pig/trunk/test/e2e/pig/drivers/TestDriverScript.pm Mon Jun 9 05:27:57 2014 @@ -91,13 +91,6 @@ sub runTest my %result; - # extract the current zebra.jar file path from the classpath - # and enter it in the hash for use in the substitution of :ZEBRAJAR: - my $zebrajar = $testCmd->{'cp'}; - $zebrajar =~ s/zebra.jar.*/zebra.jar/; - $zebrajar =~ s/.*://; - $testCmd->{'zebrajar'} = $zebrajar; - if( $testCmd->{'pig'} ){ return runPig( $self, $testCmd, $log ); } elsif( $testCmd->{'pigsql'} ){ @@ -126,7 +119,6 @@ sub runPig $pigcmd =~ s/:OUTPATH:/$outfile/g; $pigcmd =~ s/:FUNCPATH:/$testCmd->{'funcjarPath'}/g; $pigcmd =~ s/:PIGGYBANKPATH:/$testCmd->{'piggybankjarPath'}/g; - $pigcmd =~ s/:ZEBRAJAR:/$testCmd->{'zebrajar'}/g; $pigcmd =~ s/:RUNID:/$testCmd->{'UID'}/g; $pigcmd =~ s/:PIGHARNESS:/$ENV{PIG_HARNESS_ROOT}/g; $pigcmd =~ s/:USRHOMEPATH:/$testCmd->{'userhomePath'}/g;