You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Robert Stupp (JIRA)" <ji...@apache.org> on 2016/03/22 13:50:25 UTC

[jira] [Created] (CASSANDRA-11400) maps with frozen UDTs are rejected

Robert Stupp created CASSANDRA-11400:
----------------------------------------

             Summary: maps with frozen UDTs are rejected
                 Key: CASSANDRA-11400
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-11400
             Project: Cassandra
          Issue Type: Bug
            Reporter: Robert Stupp
            Priority: Minor


The following statements fail:

{code}
CREATE TYPE delivery_address (
  street           text,
  zip              text,
  city             text);

CREATE TABLE customers (
  username         text PRIMARY KEY,
  password_hash    text,
  first_name       text,
  last_name        text,
  email            text,
  delivery_addrs   map < string, frozen<delivery_address> >
);
{code}

with 
{code}
InvalidRequest: code=2200 [Invalid query] message="Non-frozen collections are not allowed inside collections: map<string, delivery_address>"
{code}

But works fine for {{set<frozen<delivery_address>>}}.



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