HADOOP-2530 Missing type in new hbase custom RPC serializer
git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@609210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
090f130a1b
commit
3f4e2cd235
|
@ -103,6 +103,7 @@ Trunk (unreleased changes)
|
|||
mapped (Bryan Duxbury via Stack)
|
||||
HADOOP-2507 REST servlet does not properly base64 row keys and column names
|
||||
(Bryan Duxbury via Stack)
|
||||
HADOOP-2530 Missing type in new hbase custom RPC serializer
|
||||
|
||||
IMPROVEMENTS
|
||||
HADOOP-2401 Add convenience put method that takes writable
|
||||
|
|
|
@ -87,6 +87,7 @@ public class HbaseObjectWritable implements Writable, Configurable {
|
|||
// Other java types
|
||||
addToMap(String.class, code++);
|
||||
addToMap(byte [].class, code++);
|
||||
addToMap(byte [][].class, code++);
|
||||
// Hadoop types
|
||||
addToMap(Text.class, code++);
|
||||
addToMap(Writable.class, code++);
|
||||
|
|
Loading…
Reference in New Issue