Return-Path: Delivered-To: apmail-hadoop-hive-dev-archive@minotaur.apache.org Received: (qmail 41810 invoked from network); 4 Feb 2009 23:17:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Feb 2009 23:17:20 -0000 Received: (qmail 51697 invoked by uid 500); 4 Feb 2009 23:17:20 -0000 Delivered-To: apmail-hadoop-hive-dev-archive@hadoop.apache.org Received: (qmail 51677 invoked by uid 500); 4 Feb 2009 23:17:20 -0000 Mailing-List: contact hive-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hadoop.apache.org Delivered-To: mailing list hive-dev@hadoop.apache.org Received: (qmail 51666 invoked by uid 99); 4 Feb 2009 23:17:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 15:17:20 -0800 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 23:17:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9DDC6234C48C for ; Wed, 4 Feb 2009 15:16:59 -0800 (PST) Message-ID: <263070430.1233789419645.JavaMail.jira@brutus> Date: Wed, 4 Feb 2009 15:16:59 -0800 (PST) From: "Prasad Chakka (JIRA)" To: hive-dev@hadoop.apache.org Subject: [jira] Commented: (HIVE-264) TBinarySortable Protocol should support null characters In-Reply-To: <774111450.1233545400707.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HIVE-264?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12670547#action_12670547 ] Prasad Chakka commented on HIVE-264: ------------------------------------ the line below assert(bin[0] == 1 || bin[1] == 2); should be assert(bin[0] == 1 || bin[0] == 2); > TBinarySortable Protocol should support null characters > ------------------------------------------------------- > > Key: HIVE-264 > URL: https://issues.apache.org/jira/browse/HIVE-264 > Project: Hadoop Hive > Issue Type: Bug > Components: Serializers/Deserializers > Affects Versions: 0.2.0 > Reporter: Zheng Shao > Assignee: Zheng Shao > Attachments: HIVE-264.1.patch, HIVE-264.2.patch, string.txt > > > Currently TBinarySortable Protocol does not support serializing null "\0" characters which confused a lot of users. > We should support that. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.