You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2008/08/30 01:43:44 UTC

[jira] Commented: (HBASE-858) HBase-799 Created an error in util.migration.v5.HColumnDescriptor

    [ https://issues.apache.org/jira/browse/HBASE-858?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12627158#action_12627158 ] 

stack commented on HBASE-858:
-----------------------------

The removal of these three lines look like they'd break migrations.  This issue should be a blocker on 0.2.1 (Oh, it already is).

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