Return-Path: Delivered-To: apmail-hadoop-pig-dev-archive@www.apache.org Received: (qmail 11406 invoked from network); 28 Sep 2010 23:48:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 28 Sep 2010 23:48:55 -0000 Received: (qmail 21830 invoked by uid 500); 28 Sep 2010 23:48:55 -0000 Delivered-To: apmail-hadoop-pig-dev-archive@hadoop.apache.org Received: (qmail 21791 invoked by uid 500); 28 Sep 2010 23:48:54 -0000 Mailing-List: contact pig-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: pig-dev@hadoop.apache.org Delivered-To: mailing list pig-dev@hadoop.apache.org Received: (qmail 21783 invoked by uid 99); 28 Sep 2010 23:48:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Sep 2010 23:48:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Sep 2010 23:48:54 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o8SNmYB3007124 for ; Tue, 28 Sep 2010 23:48:34 GMT Message-ID: <10533789.454301285717714223.JavaMail.jira@thor> Date: Tue, 28 Sep 2010 19:48:34 -0400 (EDT) From: "Thejas M Nair (JIRA)" To: pig-dev@hadoop.apache.org Subject: [jira] Updated: (PIG-1656) TOBAG & TOTUPLE udfs ignores columns with null value; TOBAG does not use input type to determine output schema In-Reply-To: <12164107.454281285717713972.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/PIG-1656?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thejas M Nair updated PIG-1656: ------------------------------- Fix Version/s: 0.8.0 Affects Version/s: 0.8.0 > TOBAG & TOTUPLE udfs ignores columns with null value; TOBAG does not use input type to determine output schema > --------------------------------------------------------------------------------------------------------------- > > Key: PIG-1656 > URL: https://issues.apache.org/jira/browse/PIG-1656 > Project: Pig > Issue Type: Bug > Affects Versions: 0.8.0 > Reporter: Thejas M Nair > Assignee: Thejas M Nair > Fix For: 0.8.0 > > > TOBAG & TOTUPLE udfs ignores columns with null value > {code} > R4= foreach B generate $0, TOTUPLE(null, id, null), TOBAG( id, null, id,null ); > grunt> dump R4; > 1000 (,1,) {(1),(1)} > 1000 (,2,) {(2),(2)} > 1000 (,3,) {(3),(3)} > 1000 (,4,) {(4),(4)} > {code} > TOBAG does not use input type to determine output schema > {code} > grunt> B1 = foreach B generate TOBAG( 1, 2, 3); > grunt> describe B1; > B1: {{null}} > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.