Dear Mr Jonathan,
I have changed a litle in multigetColumns method in CassandraServer.java
file to solve this error.
if (columns != null && columns.size() != 0)
{
Iterator<IColumn> columnItr = columns.iterator();
IColumn column;
while (columnItr.hasNext()) {
column = (IColumn) columnItr.next();
if(column.isMarkedForDelete()){
columns.remove(column);
}
}
columnFamiliesMap.put(command.key, columns);
}
On Mon, Dec 14, 2009 at 8:33 AM, Jonathan Ellis <[email protected]> wrote:
> yes, that would be a bug
>
> On 12/14/09, JKnight JKnight <[email protected]> wrote:
> > Dear all, I found method get_count still count "deleted" column. Is this
> an
> > error?
> >
> > get_count
> >
> > -
> >
> > i32 get_count(keyspace, key, column_parent, consistency_level)
> >
> > Counts the columns present in column_parent.
> >
> > --
> > Best regards,
> > JKnight
> >
>
--
Best regards,
JKnight