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:
Michael Stack 2008-01-05 20:39:09 +00:00
parent 090f130a1b
commit 3f4e2cd235
2 changed files with 2 additions and 0 deletions

View File

@ -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

View File

@ -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++);