You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Jeffrey Zhong (JIRA)" <ji...@apache.org> on 2013/12/11 03:26:07 UTC

[jira] [Created] (HBASE-10125) KeyValue(Cell c) copy constructor doesn't copy tags data

Jeffrey Zhong created HBASE-10125:
-------------------------------------

             Summary: KeyValue(Cell c) copy constructor doesn't copy tags data
                 Key: HBASE-10125
                 URL: https://issues.apache.org/jira/browse/HBASE-10125
             Project: HBase
          Issue Type: Bug
    Affects Versions: 0.98.0
            Reporter: Jeffrey Zhong
            Assignee: Jeffrey Zhong
             Fix For: 0.98.0


I happened to come across this:

{code}
  public KeyValue(Cell c) {
    this(c.getRowArray(), c.getRowOffset(), (int)c.getRowLength(),
        c.getFamilyArray(), c.getFamilyOffset(), (int)c.getFamilyLength(), 
        c.getQualifierArray(), c.getQualifierOffset(), (int) c.getQualifierLength(),
        c.getTimestamp(), Type.codeToType(c.getTypeByte()), 
        c.getValueArray(), c.getValueOffset(), c.getValueLength());
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)