HBase-799 Created an error in util.migration.v5.HColumnDescriptor
-----------------------------------------------------------------
Key: HBASE-858
URL: https://issues.apache.org/jira/browse/HBASE-858
Project: Hadoop HBase
Issue Type: Bug
Components: util
Affects Versions: 0.2.0
Reporter: Izaak Rubin
Assignee: Jean-Daniel Cryans
Priority: Blocker
Fix For: 0.2.1
The patch for HBASE-799 accidentally introduced an error in
org.apache.hadoop.hbase.util.migration.v5.HColumnDescriptor. Line 345 of this
file is currently:
this.name = Bytes.readByteArray(in);
This should be replaced by the following three lines, which were accidentally
replaced by the HBASE-799 patch:
Text t = new Text();
t.readFields(in);
this.name = t.getBytes();
So, to summarize, line 345 of util.migration.v5.HColumnDescriptor should be
replaced by the above 3 lines.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.