You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "binlijin (JIRA)" <ji...@apache.org> on 2016/09/25 09:34:22 UTC

[jira] [Created] (HBASE-16705) Eliminate long to Long auto boxing in LongComparator

binlijin created HBASE-16705:
--------------------------------

             Summary: Eliminate long to Long auto boxing in LongComparator
                 Key: HBASE-16705
                 URL: https://issues.apache.org/jira/browse/HBASE-16705
             Project: HBase
          Issue Type: Improvement
          Components: Filters
    Affects Versions: 2.0..
            Reporter: binlijin
            Assignee: binlijin
         Attachments: HBASE-16705-master.patch

LongComparator
    @Override
    public int compareTo(byte[] value, int offset, int length) {
      Long that = Bytes.toLong(value, offset, length);
      return this.longValue.compareTo(that);
    }
Every time need to convert long to Long, this is not necessary.




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