Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-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 6F44997E6 for ; Thu, 8 Mar 2012 19:52:18 +0000 (UTC) Received: (qmail 17426 invoked by uid 500); 8 Mar 2012 19:52:18 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 17360 invoked by uid 500); 8 Mar 2012 19:52:18 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 17351 invoked by uid 99); 8 Mar 2012 19:52:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2012 19:52:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2012 19:52:17 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 3C2A4106A7 for ; Thu, 8 Mar 2012 19:51:57 +0000 (UTC) Date: Thu, 8 Mar 2012 19:51:57 +0000 (UTC) From: "Tyler Patterson (Updated) (JIRA)" To: commits@cassandra.apache.org Message-ID: <837042076.40046.1331236317248.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <897844909.39978.1331235597807.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (CASSANDRA-4024) cqlsh: Unicode characters break SELECT output for dynamic columnfamilies MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CASSANDRA-4024?page=3Dcom.atla= ssian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tyler Patterson updated CASSANDRA-4024: --------------------------------------- Description:=20 notice the '=C3=A6' character in the second INSERT statement. {code} CREATE COLUMNFAMILY cf (KEY text primary key) WITH default_validation=3Dtex= t AND comparator=3Dtext; INSERT INTO cf (KEY, col1) VALUES ('b', 'b'); INSERT INTO cf (KEY, col2) VALUES ('a', '=C3=A6'); SELECT * FROM cf WHERE key in ('a', 'b'); {code} When selecting back out this error happens: 'ascii' codec can't decode byte 0xc3 in position 9: ordinal not in range(12= 8) If the selection does not include a range of keys, then the error doesn't h= appen. Also, different keys must be present in the output. was: notice the '=C3=A6' character in the INSERT statement. {code} CREATE COLUMNFAMILY cf (KEY text primary key) WITH default_validation=3Dtex= t AND comparator=3Dtext; INSERT INTO cf (KEY, col1) VALUES ('a', '=C3=A6'); SELECT * FROM cf WHERE key=3D'a'; {code} When selecting back out this error happens: 'ascii' codec can't decode byte 0xc3 in position 9: ordinal not in range(12= 8) Summary: cqlsh: Unicode characters break SELECT output for dynamic = columnfamilies (was: cqlsh: Unicode characters break SELECT output) =20 > cqlsh: Unicode characters break SELECT output for dynamic columnfamilies > ------------------------------------------------------------------------ > > Key: CASSANDRA-4024 > URL: https://issues.apache.org/jira/browse/CASSANDRA-4024 > Project: Cassandra > Issue Type: Bug > Environment: ubuntu, cqlsh from trunk > Reporter: Tyler Patterson > Labels: cqlsh > > notice the '=C3=A6' character in the second INSERT statement. > {code} > CREATE COLUMNFAMILY cf (KEY text primary key) WITH default_validation=3Dt= ext AND comparator=3Dtext; > INSERT INTO cf (KEY, col1) VALUES ('b', 'b'); > INSERT INTO cf (KEY, col2) VALUES ('a', '=C3=A6'); > SELECT * FROM cf WHERE key in ('a', 'b'); > {code} > When selecting back out this error happens: > 'ascii' codec can't decode byte 0xc3 in position 9: ordinal not in range(= 128) > If the selection does not include a range of keys, then the error doesn't= happen. Also, different keys must be present in the output. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.apache.org/jira/secure/ContactAdministrators!default.jsp= a For more information on JIRA, see: http://www.atlassian.com/software/jira