You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Benjamin Lerer (JIRA)" <ji...@apache.org> on 2016/02/17 11:04:18 UTC

[jira] [Commented] (CASSANDRA-11146) Adding field to UDT definition breaks SELECT JSON

    [ https://issues.apache.org/jira/browse/CASSANDRA-11146?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15150223#comment-15150223 ] 

Benjamin Lerer commented on CASSANDRA-11146:
--------------------------------------------

+1

> Adding field to UDT definition breaks SELECT JSON
> -------------------------------------------------
>
>                 Key: CASSANDRA-11146
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-11146
>             Project: Cassandra
>          Issue Type: Bug
>          Components: CQL
>         Environment: cqlsh 5.0.1 | Cassandra 2.2.4 | CQL spec 3.3.1 | Native protocol v4
> cqlsh 5.0.1 | Cassandra 3.3.0 | CQL spec 3.4.0 | Native protocol v4
>            Reporter: Alexander 
>            Assignee: Tyler Hobbs
>             Fix For: 2.2.x, 3.0.x, 3.x
>
>
> {noformat}
> CREATE TYPE test_type ( i int);
> CREATE TABLE test_table ( 
>      id int PRIMARY KEY, 
>      model frozen<test_type>
> );
> INSERT INTO test_table JSON '{"id": 1, "model": {"i": 123}}';
> SELECT JSON * FROM test_table;
> {noformat}
> success
> {noformat}
> ALTER TYPE test_type ADD b boolean;
> SELECT JSON * FROM test_table;
> {noformat}
> error
> {noformat}
> ServerError: <ErrorMessage code=0000 [Server error] message="java.lang.ArrayIndexOutOfBoundsException: 1">
> {noformat}



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