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

Hudson commented on ACCUMULO-907:
---------------------------------

Integrated in Accumulo-1.4.x #251 (See 
[https://builds.apache.org/job/Accumulo-1.4.x/251/])
    ACCUMULO-907 fix combiners over iterators that mutate their top key 
(Revision 1422050)

     Result = SUCCESS
ecn : 
Files : 
* 
/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/iterators/Combiner.java
* 
/accumulo/branches/1.4/src/core/src/test/java/org/apache/accumulo/core/iterators/user/CombinerTest.java

                
> stacking combiners produces a strange result
> --------------------------------------------
>
>                 Key: ACCUMULO-907
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-907
>             Project: Accumulo
>          Issue Type: Bug
>          Components: tserver
>    Affects Versions: 1.4.2
>            Reporter: Eric Newton
>            Assignee: Eric Newton
>             Fix For: 1.5.0, 1.4.3
>
>
> Paste the following into your shell:
> {noformat}
> deletetable test
> createtable test
> setiter -t test -p 16 -scan -n test_1 -class 
> org.apache.accumulo.core.iterators.user.SummingCombiner
> count:a
> STRING
> setiter -t test -p 17 -scan -n test_2 -class 
> org.apache.accumulo.core.iterators.user.SummingCombiner
> count:a
> STRING
> setiter -t test -p 18 -scan -n test_3 -class 
> org.apache.accumulo.core.iterators.user.SummingCombiner
> count:a
> STRING
> setiter -t test -p 10 -scan -n test_4 -class 
> org.apache.accumulo.core.iterators.user.SummingCombiner
> count
> STRING
> insert row count a 1
> insert row count a 1
> insert row count b 1
> insert row count b 1
> insert row count b 1
> insert row count c 1
> scan
> {noformat}
> I expect:
> {noformat}
> row count:a []    2
> row count:b []    3
> row count:c []    1
> {noformat}
> But instead, I get this:
> {noformat}
> row count:a []    12
> {noformat}

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