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 C02FDDFD2 for ; Sun, 21 Oct 2012 06:35:12 +0000 (UTC) Received: (qmail 10665 invoked by uid 500); 21 Oct 2012 06:35:12 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 10613 invoked by uid 500); 21 Oct 2012 06:35:12 -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 10583 invoked by uid 99); 21 Oct 2012 06:35:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2012 06:35:11 +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; Sun, 21 Oct 2012 06:35:08 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CFE2823888FD for ; Sun, 21 Oct 2012 06:34:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1400580 - in /pig/trunk: CHANGES.txt test/e2e/pig/deployers/LocalDeployer.pm Date: Sun, 21 Oct 2012 06:34:24 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121021063424.CFE2823888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: daijy Date: Sun Oct 21 06:34:24 2012 New Revision: 1400580 URL: http://svn.apache.org/viewvc?rev=1400580&view=rev Log: PIG-2967: Fix Glob_local test failure for Pig E2E Test Framework Modified: pig/trunk/CHANGES.txt pig/trunk/test/e2e/pig/deployers/LocalDeployer.pm Modified: pig/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1400580&r1=1400579&r2=1400580&view=diff ============================================================================== --- pig/trunk/CHANGES.txt (original) +++ pig/trunk/CHANGES.txt Sun Oct 21 06:34:24 2012 @@ -326,6 +326,8 @@ OPTIMIZATIONS BUG FIXES +PIG-2967: Fix Glob_local test failure for Pig E2E Test Framework (sushantj via daijy) + PIG-1283: COUNT on null bag causes failure (analog.sony via jcoveney) PIG-2958: Pig tests do not appear to have a logger attached (daijyc via jcoveney) Modified: pig/trunk/test/e2e/pig/deployers/LocalDeployer.pm URL: http://svn.apache.org/viewvc/pig/trunk/test/e2e/pig/deployers/LocalDeployer.pm?rev=1400580&r1=1400579&r2=1400580&view=diff ============================================================================== --- pig/trunk/test/e2e/pig/deployers/LocalDeployer.pm (original) +++ pig/trunk/test/e2e/pig/deployers/LocalDeployer.pm Sun Oct 21 06:34:24 2012 @@ -120,6 +120,11 @@ sub generateData 'rows' => 10000, 'outfile' => "singlefile/studenttab10k", }, { + 'name' => "studenttab20m", + 'filetype' => "studenttab", + 'rows' => 20000000, + 'outfile' => "singlefile/studenttab20m", + }, { 'name' => "votertab10k", 'filetype' => "votertab", 'rows' => 10000,