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 0A0BC18533 for ; Fri, 30 Oct 2015 19:50:17 +0000 (UTC) Received: (qmail 84906 invoked by uid 500); 30 Oct 2015 19:50:16 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 84629 invoked by uid 500); 30 Oct 2015 19:50:16 -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 84519 invoked by uid 99); 30 Oct 2015 19:50:16 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Oct 2015 19:50:16 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 30046C1628 for ; Fri, 30 Oct 2015 19:50:16 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.8 X-Spam-Level: X-Spam-Status: No, score=0.8 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id PjSE0aVjygp3 for ; Fri, 30 Oct 2015 19:50:15 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id 65F22439BC for ; Fri, 30 Oct 2015 19:50:15 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id D012EE04C1 for ; Fri, 30 Oct 2015 19:50:14 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id A95943A0288 for ; Fri, 30 Oct 2015 19:50:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1711544 - in /pig/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/func.xml Date: Fri, 30 Oct 2015 19:50:14 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151030195014.A95943A0288@svn01-us-west.apache.org> Author: daijy Date: Fri Oct 30 19:50:14 2015 New Revision: 1711544 URL: http://svn.apache.org/viewvc?rev=1711544&view=rev Log: PIG-4721: IsEmpty documentation error Modified: pig/trunk/CHANGES.txt pig/trunk/src/docs/src/documentation/content/xdocs/func.xml Modified: pig/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1711544&r1=1711543&r2=1711544&view=diff ============================================================================== --- pig/trunk/CHANGES.txt (original) +++ pig/trunk/CHANGES.txt Fri Oct 30 19:50:14 2015 @@ -67,6 +67,8 @@ PIG-4639: Add better parser for Apache H BUG FIXES +PIG-4721: IsEmpty documentation error (nsmith via daijy) + PIG-4712: [Pig on Tez] NPE in Bloom UDF after Union (rohini) PIG-4707: [Pig on Tez] Streaming job hangs with pig.exec.mapPartAgg=true (rohini) Modified: pig/trunk/src/docs/src/documentation/content/xdocs/func.xml URL: http://svn.apache.org/viewvc/pig/trunk/src/docs/src/documentation/content/xdocs/func.xml?rev=1711544&r1=1711543&r2=1711544&view=diff ============================================================================== --- pig/trunk/src/docs/src/documentation/content/xdocs/func.xml (original) +++ pig/trunk/src/docs/src/documentation/content/xdocs/func.xml Fri Oct 30 19:50:14 2015 @@ -634,8 +634,8 @@ SSN = load 'ssn.txt' using PigStorage() SSN_NAME = load 'students.txt' using PigStorage() as (ssn:long, name:chararray); -/* do a left outer join of SSN with SSN_Name */ -X = JOIN SSN by ssn LEFT OUTER, SSN_NAME by ssn; +/* do a cogroup of SSN with SSN_Name */ +X = COGROUP SSN by ssn, SSN_NAME by ssn; /* only keep those ssn's for which there is no name */ Y = filter X by IsEmpty(SSN_NAME);