You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@accumulo.apache.org by "Billie Rinaldi (Resolved) (JIRA)" <ji...@apache.org> on 2012/04/19 22:04:40 UTC

[jira] [Resolved] (ACCUMULO-546) User manual inconsistencies

     [ https://issues.apache.org/jira/browse/ACCUMULO-546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Billie Rinaldi resolved ACCUMULO-546.
-------------------------------------

    Resolution: Fixed
    
> User manual inconsistencies
> ---------------------------
>
>                 Key: ACCUMULO-546
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-546
>             Project: Accumulo
>          Issue Type: Task
>          Components: docs
>    Affects Versions: 1.4.0
>            Reporter: Billie Rinaldi
>            Assignee: Billie Rinaldi
>             Fix For: 1.4.1
>
>
> From Nabeel Hopesor:
> There is some confusion on the following page http://accumulo.apache.org/1.4/user_manual/Table_Design.html#Indexing.
> In the section "Indexing", row ids are fetched by the following code
> for(Entry<Key,Value> entry : indexScanner)
> matchingRows.add(new Text(entry.getValue()));
> According to the diagram within the Indexing section, I would have expected this code
> for(Entry<Key,Value> entry : indexScanner)
> matchingRows.add(new Text(entry.getKey(). getColumnQualifier()));
> Finally, the last line in that same example uses an undeclared variable e.
> System.out.println(e.getValue());
> but I think what was meant was
> System.out.println(entry.getVa lue());

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira