You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Jonathan Ellis (JIRA)" <ji...@apache.org> on 2010/01/21 04:20:57 UTC

[jira] Commented: (CASSANDRA-729) Bug in count columns.

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

Jonathan Ellis commented on CASSANDRA-729:
------------------------------------------

this sounds like CASSANDRA-647, are you testing 0.5.0 final or an earlier release?

> Bug in count columns.
> ---------------------
>
>                 Key: CASSANDRA-729
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-729
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 0.5
>         Environment: debian lenny, sun jdk 1.6
>            Reporter: Gasol Wu
>
> same as thrift api (get_count).
> Welcome to cassandra CLI.
> Type 'help' or '?' for help. Type 'quit' or 'exit' to quit.
> cassandra> connect localhost/9160
> Connected to localhost/9160
> cassandra> del Keyspace1.Standard1['1']
> row removed.
> cassandra> set Keyspace1.Standard1['1']['foo'] = 'foo value'
> Value inserted.
> cassandra> set Keyspace1.Standard1['1']['bar'] = 'bar value'
> Value inserted.
> cassandra> get Keyspace1.Standard1['1']
> => (column=foo, value=foo value, timestamp=1264043095206)
> => (column=bar, value=bar value, timestamp=1264043106184)
> Returned 2 results.
> cassandra> count Keyspace1.Standard1['1']
> 2 columns
> cassandra> del Keyspace1.Standard1['1']['foo']
> column removed.
> cassandra> get Keyspace1.Standard1['1']       
> => (column=bar, value=bar value, timestamp=1264043106184)
> Returned 1 results.
> cassandra> count Keyspace1.Standard1['1']     
> 2 columns
> cassandra>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.