Robert Stupp created CASSANDRA-10749:
----------------------------------------

             Summary: DeletionTime.compareTo wrong ??
                 Key: CASSANDRA-10749
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-10749
             Project: Cassandra
          Issue Type: Bug
            Reporter: Robert Stupp
            Priority: Minor


{{org.apache.cassandra.db.DeletionTime#compareTo}} looks like this:

{code}
    public int compareTo(DeletionTime dt)
    {
        if (markedForDeleteAt() < dt.markedForDeleteAt())
            return -1;
        else if (markedForDeleteAt() > dt.markedForDeleteAt())
            return 1;
        else if (localDeletionTime() < dt.localDeletionTime())
            return -1;
        else if (localDeletionTime() > dt.localDeletionTime())
            return -1;
        else
            return 0;
    }
{code}

I think that {{localDeletionTime() > dt.localDeletionTime()}} should return 
{{1}}, but I'm not sure. /cc [~slebresne]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to