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

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

Nathan Cormier created CASSANDRA-8372:
-----------------------------------------

             Summary: 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


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)