[ 
https://issues.apache.org/jira/browse/ACCUMULO-1673?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13772062#comment-13772062
 ] 

ASF subversion and git services commented on ACCUMULO-1673:
-----------------------------------------------------------

Commit baf134c836dd90d581a71484544d5ced64a7e35a in branch 
refs/heads/1.5.1-SNAPSHOT from [~_alexm]
[ https://git-wip-us.apache.org/repos/asf?p=accumulo.git;h=baf134c ]

ACCUMULO-1673 fix 1.5 manual indexing example

Signed-off-by: Josh Elser <els...@rpi.edu>

                
> Mikstake in 1.5 Manual section 7.3 Indexing
> -------------------------------------------
>
>                 Key: ACCUMULO-1673
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-1673
>             Project: Accumulo
>          Issue Type: Bug
>          Components: docs
>            Reporter: Miguel Pereira
>            Assignee: Alex Moundalexis
>            Priority: Trivial
>              Labels: documentaion, newbie
>             Fix For: 1.5.1, 1.6.0
>
>         Attachments: ACCUMULO-1673.patch.txt
>
>   Original Estimate: 5m
>  Remaining Estimate: 5m
>
> HashSet<Text> matchingRows = new HashSet<Text>();
> ...
>     matchingRows.add(new Text(entry.getKey().getColumnQualifier()));
> ...
> bscan.fetchFamily("attributes");
> ...
> for(Entry<Key,Value> entry : scan)
> Should read:
> HashSet<Range> matchingRows = new HashSet<Range>();
> ...
>     matchingRows.add(new Range(entry.getKey().getColumnQualifier()));
> ...
> bscan.fetchColumnFamily("attributes"); // api change?
> ...
> for(Entry<Key,Value> entry : bscan)
> // Now this line will work, since it accepts a collection of range not text 
> bscan.setRanges(matchingRows);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to