Details
-
Bug
-
Status: Resolved
-
Normal
-
Resolution: Fixed
-
None
-
Correctness
-
Normal
-
Normal
-
User Report
-
All
-
None
-
Description
Cassandra version: 5.0.0 GA
Given this type
CREATE TYPE testType ( userids SET<UUID> );
If I try to create this table
CREATE TABLE test ( id INT PRIMARY KEY, myType testType );
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:
CREATE TABLE test ( id INT PRIMARY KEY ); alter TABLE test add myType testType;
It does not show that error, which it should.
-------
Also the output of `describe test;` shows that it successfully altered the table.
Attachments
Issue Links
- links to