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

Michael Semb Wever updated CASSANDRA-19925:
-------------------------------------------
    Fix Version/s: 4.0.15
                       (was: 4.1.6)

> should show error when altering table with Non-frozen UDTs with nested 
> non-frozen collections
> ---------------------------------------------------------------------------------------------
>
>                 Key: CASSANDRA-19925
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-19925
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Cluster/Schema
>            Reporter: Soheil Rahsaz
>            Assignee: Stefan Miklosovic
>            Priority: Normal
>             Fix For: 4.1.7, 5.0.1, 5.1, 4.0.15
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Cassandra version: 5.0.0 GA
> Given this type
> {code:java}
> CREATE TYPE testType
>     (
>         userids SET<UUID>
>     );
> {code}
> If I try to create this table
> {code:java}
> CREATE TABLE test
> (
>     id     INT PRIMARY KEY,
>     myType testType
> );
> {code}
> It shows an error: "Non-frozen UDTs with nested non-frozen collections are 
> not supported"
> But if I create the table without the type and then alter the table:
> {code:java}
> CREATE TABLE test
> (
>     id     INT PRIMARY KEY
> );
> alter TABLE test add myType testType;
> {code}
> It does not show that error, which it should.
> -------
> Also the output of `describe test;` shows that it successfully altered the 
> table.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to