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 6767E9B9E for ; Tue, 6 Dec 2011 22:58:22 +0000 (UTC) Received: (qmail 5893 invoked by uid 500); 6 Dec 2011 22:58:22 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 5864 invoked by uid 500); 6 Dec 2011 22:58: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 5857 invoked by uid 99); 6 Dec 2011 22:58:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Dec 2011 22:58: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; Tue, 06 Dec 2011 22:58:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 47A7023889B3 for ; Tue, 6 Dec 2011 22:57:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1211220 - /pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf Date: Tue, 06 Dec 2011 22:57:58 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111206225758.47A7023889B3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: daijy Date: Tue Dec 6 22:57:57 2011 New Revision: 1211220 URL: http://svn.apache.org/viewvc?rev=1211220&view=rev Log: Fix BugFix_3 e2e failure with benchmark 0.9.1 Modified: pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf Modified: pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf?rev=1211220&r1=1211219&r2=1211220&view=diff ============================================================================== --- pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf (original) +++ pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf Tue Dec 6 22:57:57 2011 @@ -3600,6 +3600,14 @@ store E into ':OUTPATH:';\, STORE B INTO ':OUTPATH:.1'; C = DISTINCT B ; store C into ':OUTPATH:.2';?, + 'verify_pig_script' => q?A = LOAD ':INPATH:/singlefile/studenttab10k' AS (name:chararray, age:int,gpa:double); + Z = group A all; + Z1 = foreach Z generate AVG(A.gpa) as avg; + B = cross A, Z1; + B1 = foreach B generate name, age, gpa-Z1.avg as diff; + STORE B1 INTO ':OUTPATH:.1'; + C = DISTINCT B1 ; + store C into ':OUTPATH:.2';?, } ], },