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

Marko A. Rodriguez commented on TINKERPOP-1215:
-----------------------------------------------

This also happens with {{GraphComputer}}. Thats good to know as at least the 
bug is consistent and higher in the stack.

{code}
gremlin> g = g.withComputer()
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], graphcomputer]
gremlin> 
g.V().hasLabel("person").aggregate("x").by("age").cap("x").as("y","z").select("x","y","z")
==>[x:[27, 29, 32, 35], y:[[27, 29, 32, 35], [27, 29, 32, 35]], z:[[27, 29, 32, 
35], [27, 29, 32, 35]]]
gremlin>
{code}

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

Reply via email to