You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "binlijin (JIRA)" <ji...@apache.org> on 2013/01/07 14:04:12 UTC

[jira] [Created] (HIVE-3868) Use Hive‘s serde to parse HBase’s byte Data in LazyHBaseRow and

binlijin created HIVE-3868:
------------------------------

             Summary: Use Hive‘s serde to parse HBase’s byte Data in LazyHBaseRow and
                 Key: HIVE-3868
                 URL: https://issues.apache.org/jira/browse/HIVE-3868
             Project: Hive
          Issue Type: Bug
          Components: HBase Handler
    Affects Versions: 0.9.0
            Reporter: binlijin


In LazyHBaseRow,
{code}
  private Object uncheckedGetField(int fieldID) {
          // it is a column i.e. a column-family with column-qualifier
          byte [] res = result.getValue(colMap.familyNameBytes, colMap.qualifierNameBytes);

          if (res == null) {
            return null;
          } else {
            ref = new ByteArrayRef();
            ref.setData(res);
          }
      if (ref != null) {
        fields[fieldID].init(ref, 0, ref.getData().length);
      }
  }

{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira