[
https://issues.apache.org/jira/browse/TINKERPOP-1960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Cole Greer updated TINKERPOP-1960:
----------------------------------
Affects Version/s: 3.7.0
> fold() doesn't fold in OLAP
> ---------------------------
>
> Key: TINKERPOP-1960
> URL: https://issues.apache.org/jira/browse/TINKERPOP-1960
> Project: TinkerPop
> Issue Type: Bug
> Components: hadoop
> Affects Versions: 3.2.9, 3.7.0
> Reporter: Daniel Kuppitz
> Priority: Major
>
> {noformat}
> gremlin> g.withSack(0).V().hasLabel("person").as("from","to").
> ......1> repeat(both().as("to").dedup("from","to").
> ......2> sack(sum).by(constant(1))).
> ......3> emit(hasLabel("person")).
> ......4> sack().dedup().fold()
> ==>[1,2,3]
> gremlin> g.withComputer().withSack(0).V().hasLabel("person").as("from","to").
> ......1> repeat(both().as("to").dedup("from","to").
> ......2> sack(sum).by(constant(1))).
> ......3> emit(hasLabel("person")).
> ......4> sack().dedup().fold()
> ==>[1]
> ==>[2]
> ==>[3]
> {noformat}
> I only noticed the misbehavior in this particular traversal, other tests
> looked good, so there must be a step that somehow interferes with {{fold()}}.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)