cqlsh: Unicode characters break SELECT output
---------------------------------------------

                 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


notice the 'æ' character in the INSERT statement.
{code}
CREATE COLUMNFAMILY cf (KEY text primary key) WITH default_validation=text AND 
comparator=text;
INSERT INTO cf (KEY, col1) VALUES ('a', 'æ');
SELECT * FROM cf WHERE key='a';
{code}
When selecting back out this error happens:
'ascii' codec can't decode byte 0xc3 in position 9: ordinal not in range(128)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira


Reply via email to