[ https://issues.apache.org/jira/browse/TINKERPOP-1215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15220192#comment-15220192 ]
Marko A. Rodriguez commented on TINKERPOP-1215: ----------------------------------------------- {{group()}} is happy here. {code} gremlin> g.V().hasLabel("person").group("a").by("name").cap("a").as("b","c").select("a","b","c") ==>[a:[peter:[v[6]], vadas:[v[2]], josh:[v[4]], marko:[v[1]]], b:[peter:[v[6]], vadas:[v[2]], josh:[v[4]], marko:[v[1]]], c:[peter:[v[6]], vadas:[v[2]], josh:[v[4]], marko:[v[1]]]] {code} I really have no good explanation for why {{aggregate}} and {{store}} are bad. ??..... > 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 > > {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)