You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Robert Stupp (JIRA)" <ji...@apache.org> on 2015/11/22 12:33:11 UTC

[jira] [Created] (CASSANDRA-10749) DeletionTime.compareTo wrong ??

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)