[
https://issues.apache.org/jira/browse/CASSANDRA-729?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12803648#action_12803648
]
Gasol Wu commented on CASSANDRA-729:
------------------------------------
ColumnFamily.getSortedColumns() (return this.columns_) contains deleted column,
it's odd.
i don't know how to fix.
CassandraServer.java
382: Map<String, Collection<IColumn>> columnsMap =
multigetColumns(commands, consistency_level);
for (ReadCommand command: commands)
{
Collection<IColumn> columns = columnsMap.get(command.key);
if(columns == null)
{
columnFamiliesMap.put(command.key, 0);
}
else
{
394: columnFamiliesMap.put(command.key, columns.size()); // contains
removed column,
}
}
return columnFamiliesMap;
> 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.