[
https://issues.apache.org/jira/browse/CASSANDRA-9188?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Aleksey Yeschenko resolved CASSANDRA-9188.
------------------------------------------
Resolution: Fixed
Fix Version/s: (was: 2.1.x)
3.0.0
2.2.4
This is fixed in the versions where we bundle python-driver 3.0.0 (which would
be 2.2 and 3.0), and will not be backported to 2.1.
> cqlsh does not display properly the modified UDTs
> -------------------------------------------------
>
> Key: CASSANDRA-9188
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9188
> Project: Cassandra
> Issue Type: Bug
> Reporter: Benjamin Lerer
> Priority: Minor
> Labels: cqlsh
> Fix For: 2.2.4, 3.0.0
>
>
> The problem can be reproduced as follow:
> {code}
> cqlsh:test2> create type myType (a int);
> cqlsh:test2> create table myTable (a int primary key, b frozen<myType>);
> cqlsh:test2> insert into myTable (a, b) values (1, {a: 1});
> cqlsh:test2> select * from myTable;
> a | b
> ---+--------
> 1 | {a: 1}
> (1 rows)
> cqlsh:test2> alter type myType add b int;
> cqlsh:test2> insert into myTable (a, b) values (2, {a: 2, b :2});
> cqlsh:test2> select * from myTable;
> a | b
> ---+--------
> 1 | {a: 1}
> 2 | {a: 2}
> (2 rows)
> {code}
> If {{cqlsh}} is then restarted it will display the data properly.
> {code}
> cqlsh:test2> select * from mytable;
> a | b
> ---+-----------------
> 1 | {a: 1, b: null}
> 2 | {a: 2, b: 2}
> (2 rows)
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)