-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/9276/
-----------------------------------------------------------

(Updated Feb. 9, 2013, 9:56 p.m.)


Review request for hive.


Changes
-------

Updated diff with the proposed changes.


Description
-------

Added support for pulling hbase columns just by providing prefixes and a 
wildcard. So a query now could look something like this:

CREATE EXTERNAL TABLE hive_hbase_test
ROW FORMAT SERDE 'org.apache.hadoop.hive.hbase.HBaseSerDe' 
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler' 
WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,fam1:col*") 
TBLPROPERTIES ("hbase.table.name" = "TEST_HBASE_TABLE");

This would pull in all columns under column family "fam1" which start with 
"col". This gives a little more flexibility over pull all columns format.


This addresses bug HIVE-3725.
    https://issues.apache.org/jira/browse/HIVE-3725


Diffs (updated)
-----

  hbase-handler/src/java/org/apache/hadoop/hive/hbase/HBaseSerDe.java 7f37ba5 
  hbase-handler/src/java/org/apache/hadoop/hive/hbase/LazyHBaseCellMap.java 
a8ba9d9 
  hbase-handler/src/java/org/apache/hadoop/hive/hbase/LazyHBaseRow.java d35bb52 
  hbase-handler/src/test/org/apache/hadoop/hive/hbase/TestHBaseSerDe.java 
e821282 

Diff: https://reviews.apache.org/r/9276/diff/


Testing
-------

Added unit tests to demonstrate the new functionality. Also made sure that all 
existing unit tests passed.


Thanks,

Swarnim Kulkarni

Reply via email to