You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Olivier Michallat (JIRA)" <ji...@apache.org> on 2014/08/04 17:54:12 UTC

[jira] [Updated] (CASSANDRA-7685) Prepared marker for collections inside UDT do not handle null values

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

Olivier Michallat updated CASSANDRA-7685:
-----------------------------------------

    Attachment: 7685.txt

Attaching trivial patch.

> Prepared marker for collections inside UDT do not handle null values
> --------------------------------------------------------------------
>
>                 Key: CASSANDRA-7685
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7685
>             Project: Cassandra
>          Issue Type: Bug
>            Reporter: Olivier Michallat
>            Assignee: Sylvain Lebresne
>         Attachments: 7685.txt
>
>
> The fix for CASSANDRA-7472 does not handle null values. The following causes an NPE to be thrown:
> {code}
> // CREATE TYPE phone (alias text, number text)
> // CREATE TYPE address (street text, phones set<phone>)
> // CREATE TABLE user (id int PRIMARY KEY, addr address)
> PreparedStatement ps = session.prepare("INSERT INTO user (id, addr) VALUES (1, { street: 'foo', phones: ? })");
> BoundStatement bs = ps.bind().setSet(0, null);
> session.execute(bs);
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)