You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Amit Kabra (JIRA)" <ji...@apache.org> on 2017/07/11 14:55:00 UTC

[jira] [Created] (HBASE-18361) CellComparator compare function should compare cell's value along with other attributes

Amit Kabra created HBASE-18361:
----------------------------------

             Summary: CellComparator compare function should compare cell's value along with other attributes
                 Key: HBASE-18361
                 URL: https://issues.apache.org/jira/browse/HBASE-18361
             Project: HBase
          Issue Type: Bug
    Affects Versions: 1.3.1
            Reporter: Amit Kabra
            Assignee: Amit Kabra


CellComparator.compare(Cell a, Cell b) should compare a and b's value as well.

If we create two cells as 
    byte [] row = Bytes.toBytes("row");
    byte [] value = Bytes.toBytes("value");
    byte [] value1 = Bytes.toBytes("value1");

    Cell c1 = CellUtil.createCell(row, value);
    Cell c2 = CellUtil.createCell(row, value1);

And compare them using CellComparator.compare(c1, c2,true) , it returns 0 i.e it matches them while they are different.CellComparator compares each attribute of cell but value.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)