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

Dave Brosius updated CASSANDRA-5117:
------------------------------------

    Attachment: 5117.txt
    
> CQL 3 ALTER TABLE ... ADD causes OOB
> ------------------------------------
>
>                 Key: CASSANDRA-5117
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-5117
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.2.0
>         Environment: Mac OSX, DS Java Driver, apache-cassandra-1.2.0-src 
> downloaded from project Jan 2, 2013
>            Reporter: Kristine Hahn
>            Assignee: Dave Brosius
>             Fix For: 1.2.1
>
>         Attachments: 5117.txt, OOB.txt
>
>
> To reproduce:
> ./cqlsh
> Connected to Test Cluster at localhost:9160.
> [cqlsh 2.3.0 | Cassandra 1.2.0-SNAPSHOT | CQL spec 3.0.0 | Thrift protocol 
> 19.35.0]
> Use HELP for help.
> cqlsh> create keyspace music with replication = {'CLASS' : 
>    ... 'SimpleStrategy', 'replication_factor' : 3};
> cqlsh> use music
>    ... ;
> cqlsh:music> CREATE TABLE songs (
>          ... id uuid PRIMARY KEY,
>          ... title text,
>          ... album text,
>          ... artist text,
>          ... data blob
>          ... );
> cqlsh:music> insert into songs (id, title, artist, album) values 
> ('a3e64f8f-bd44-4f28-b8d9-6938726e34d4', 'La Grange', 'ZZ Top', 'Tres 
> Hombres');
> cqlsh:music> insert into songs (id, title, artist, album) values 
> ('8a172618-b121-4136-bb10-f665cfc469eb', 'Moving in Stereo', 'Fu Manchu', 'We 
> Must Obey');
> cqlsh:music> insert into songs (id, title, artist, album) values 
> ('62c36092-82a1-3a00-93d1-46196ee77204', 'Outside Woman Blues', 'Back Door 
> Slam', 'Roll Away');
> cqlsh:music> CREATE TABLE song_tags (
>          ... id uuid,
>          ... tag_name text,
>          ... PRIMARY KEY (id, tag_name)
>          ... );
> cqlsh:music> select * from song_tags;
> cqlsh:music> INSERT INTO song_tags (id, tag_name) VALUES 
> ('a3e64f8f-bd44-4f28-b8d9-6938726e34d4', 'blues');
> cqlsh:music> INSERT INTO song_tags (id, tag_name) VALUES 
> ('8a172618-b121-4136-bb10-f665cfc469eb', 'covers');
> cqlsh:music> INSERT INTO song_tags (id, tag_name) VALUES 
> ('a3e64f8f-bd44-4f28-b8d9-6938726e34d4', '1973');
> cqlsh:music> INSERT INTO song_tags (id, tag_name) VALUES 
> ('8a172618-b121-4136-bb10-f665cfc469eb', '2007');
> cqlsh:music> select * from song_tags;
>  id                                   | tag_name
> --------------------------------------+----------
>  a3e64f8f-bd44-4f28-b8d9-6938726e34d4 |     1973
>  a3e64f8f-bd44-4f28-b8d9-6938726e34d4 |    blues
>  8a172618-b121-4136-bb10-f665cfc469eb |     2007
>  8a172618-b121-4136-bb10-f665cfc469eb |   covers
> cqlsh:music> drop table song_tags;
> cqlsh:music> ALTER TABLE songs ADD tags set<text>;
> TSocket read 0 bytes

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to