You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Philip Thompson (JIRA)" <ji...@apache.org> on 2014/11/25 21:54:12 UTC

[jira] [Updated] (CASSANDRA-8372) cqlsh - throws TypeError on SELECT of a map with blob keys

     [ https://issues.apache.org/jira/browse/CASSANDRA-8372?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Philip Thompson updated CASSANDRA-8372:
---------------------------------------
    Fix Version/s: 2.1.3
           Labels: cqlsh  (was: )

> cqlsh - throws TypeError on SELECT of a map with blob keys
> ----------------------------------------------------------
>
>                 Key: CASSANDRA-8372
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-8372
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Tools
>            Reporter: Nathan Cormier
>            Priority: Minor
>              Labels: cqlsh
>             Fix For: 2.1.3
>
>
> CREATE TABLE users (user_id bigint PRIMARY KEY, config map<blob, int>);
> INSERT INTO users (user_id, config) VALUES (123, {0xaa: 1});
> SELECT user_id FROM users;
>     This works fine.
> SELECT * FROM users;
>     Any SELECT with the map field will result in this error:
> {code}
> Traceback (most recent call last):
>   File "/usr/local/bin/cqlsh", line 909, in perform_simple_statement
>     rows = self.session.execute(statement, trace=self.tracing_enabled)
>   File "/Library/Python/2.7/site-packages/cassandra/cluster.py", line 1281, in execute
>     result = future.result(timeout)
>   File "/Library/Python/2.7/site-packages/cassandra/cluster.py", line 2771, in result
>     raise self._final_exception
> TypeError: unhashable type: 'bytearray'
> {code}
> This is cqlsh version 5.0.1.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)