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

Stefan Miklosovic updated CASSANDRA-18585:
------------------------------------------
          Fix Version/s: 3.0.30
                         3.11.17
                         4.0.12
                         4.1.4
                         5.0
                             (was: 3.0.x)
                             (was: 3.11.x)
                             (was: 5.x)
                             (was: 4.0.x)
                             (was: 4.1.x)
          Since Version: 3.0.0
    Source Control Link: 
https://github.com/apache/cassandra/commit/4ab31d34c86d1b387098dd7934b11c659c763416
             Resolution: Fixed
                 Status: Resolved  (was: Ready to Commit)

> Alter Type does not validate changes like Create Type does
> ----------------------------------------------------------
>
>                 Key: CASSANDRA-18585
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-18585
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Cluster/Schema
>            Reporter: David Capwell
>            Assignee: Roman Mushchinski
>            Priority: Normal
>             Fix For: 3.0.30, 3.11.17, 4.0.12, 4.1.4, 5.0
>
>          Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> Create Type attempts to block undesired field types, but this validation is 
> not cared over to Alter Type Add Field; which allows you to add 
> unexpected/desired types
> {code}
> Assertions.assertThatThrownBy(() -> createType("CREATE TYPE %s (f 
> counter)")).hasRootCauseMessage("A user type cannot contain counters");
> String type = createType(KEYSPACE, "CREATE TYPE %s (a int)");
> schemaChange(String.format("ALTER TYPE %s.%s ADD f counter", KEYSPACE, type));
> UserType udt = 
> Keyspace.open(KEYSPACE).getMetadata().types.get(UTF8Type.instance.decompose(type)).get();
> logger.warn("UDT: {}", udt);
> {code}
> {code}
> UDT: 
> org.apache.cassandra.db.marshal.UserType(cql_test_keyspace,747970655f3031,61:org.apache.cassandra.db.marshal.Int32Type,66:org.apache.cassandra.db.marshal.CounterColumnType)
> {code}



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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to