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

Mikhail Stepura edited comment on CASSANDRA-7267 at 5/26/14 10:12 PM:
----------------------------------------------------------------------

as [~thobbs] correctly noticed, those proposed changes will not work for cases 
when a collection size > 65535, so they can't be accepted into the driver.
But probably we can use them as an interim solution to monkey patch the driver 
from CQLSH, until the driver is fixed.


was (Author: mishail):
as [~thobbs] correctly noticed, that proposed changes will not work for cases 
when a collection size > 65535, so they can't be accepted into the driver.
But probably we can use that as an interim solution to monkey patch the driver 
from CQLSH, until the driver is fixed.

> Embedded sets in user defined data-types are not updating
> ---------------------------------------------------------
>
>                 Key: CASSANDRA-7267
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7267
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>            Reporter: Thomas Zimmer
>            Assignee: Mikhail Stepura
>             Fix For: 2.1 rc1
>
>
> Hi,
> i just played around with Cassandra 2.1.0 beta2 and i might have found an 
> issue with embedded Sets in User Defined Data Types.
> Here is how i can reproduce it:
> 1.) Create a keyspace "test"
> 2.) Create a table like this:
> {{create table songs (title varchar PRIMARY KEY, band varchar, tags 
> Set<varchar>);}}
> 3.) Create a udt like this:
> {{create type band_info_type (founded timestamp, members Set<varchar>, 
> description text);}}
> 4.) Try to insert data:
> {code}
> insert into songs (title, band, band_info, tags) values ('The trooper', 'Iron 
> Maiden', {founded:188694000, members: {'Bruce Dickinson', 'Dave Murray', 
> 'Adrian Smith', 'Janick Gers', 'Steve Harris', 'Nicko McBrain'}, description: 
> 'Pure evil metal'}, {'metal', 'england'});
> {code}
> 5.) Select the data:
> {{select * from songs;}}
> Returns this:
> {code}
> The trooper | Iron Maiden | {founded: '1970-01-03 05:24:54+0100', members: 
> {}, description: 'Pure evil metal'} | {'england', 'metal'}
> {code}
> The embedded data-set seems to empty. I also tried updating a row which also 
> does not seem to work.
> Regards,
> Thomas



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

Reply via email to