[
https://issues.apache.org/jira/browse/TINKERPOP-1215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marko A. Rodriguez closed TINKERPOP-1215.
-----------------------------------------
Resolution: Fixed
Assignee: Marko A. Rodriguez
Fix Version/s: 3.2.1
3.1.3
The problem was in {{BulkSet.equals()}} which caused the labeled path to
duplicate itself as equality wasn't properly defined. Added test cases to
{{BulkSetTest}} and added the exposing traversal to {{AggregateTest}}. This is
why {{group()}}, {{groupCount()}}, etc. were not effected by this problem as
they don't use {{BulkSet}} like {{aggregate()}} and {{store()}} do.
> Labeled a SideEffectCapStep cause problems.
> --------------------------------------------
>
> Key: TINKERPOP-1215
> URL: https://issues.apache.org/jira/browse/TINKERPOP-1215
> Project: TinkerPop
> Issue Type: Bug
> Components: process
> Affects Versions: 3.1.1-incubating
> Reporter: Marko A. Rodriguez
> Assignee: Marko A. Rodriguez
> Fix For: 3.1.3, 3.2.1
>
>
> {code}
> gremlin>
> g.V().hasLabel("person").aggregate("x").by("age").cap("x").as("y","z").select("x","y","z")
> ==>[x:[29, 27, 32, 35], y:[[29, 27, 32, 35], [29, 27, 32, 35]], z:[[29, 27,
> 32, 35], [29, 27, 32, 35]]] // BAD
> gremlin>
> g.V().hasLabel("person").aggregate("x").by("age").cap("x").filter{true}.as("y","z").select("x","y","z")
> ==>[x:[29, 27, 32, 35], y:[29, 27, 32, 35], z:[29, 27, 32, 35]] // GOOD
> {code}
> This only seems to be an issue with {{AggregateStep}}
> {code}
> gremlin>
> g.V().hasLabel("person").groupCount("a").cap("a").as("b","c").select("a","b","c")
> ==>[a:[v[1]:1, v[2]:1, v[4]:1, v[6]:1], b:[v[1]:1, v[2]:1, v[4]:1, v[6]:1],
> c:[v[1]:1, v[2]:1, v[4]:1, v[6]:1]]
> gremlin>
> g.V().hasLabel("person").aggregate("a").cap("a").as("b","c").select("a","b","c")
> ==>[a:[v[1], v[2], v[4], v[6]], b:[[v[1], v[2], v[4], v[6]], [v[1], v[2],
> v[4], v[6]]], c:[[v[1], v[2], v[4], v[6]], [v[1], v[2], v[4], v[6]]]]
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)