[ https://issues.apache.org/jira/browse/TINKERPOP-1760?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
stephen mallette reopened TINKERPOP-1760: ----------------------------------------- > OLAP compilation failing around ConnectiveStrategy > -------------------------------------------------- > > Key: TINKERPOP-1760 > URL: https://issues.apache.org/jira/browse/TINKERPOP-1760 > Project: TinkerPop > Issue Type: Bug > Components: process > Affects Versions: 3.2.6 > Reporter: Marko A. Rodriguez > Assignee: Marko A. Rodriguez > Fix For: 3.2.7, 3.3.1 > > > {code} > gremlin> g.V().where(out("created").and().out("knows")).values("name") > Local traversals may not traverse past the local star-graph on GraphComputer: > [VertexStep(OUT,[created],vertex), AndStep, VertexStep(OUT,[knows],vertex)] > {code} > This should compile to: > {code} > g.V().where(and(outE('created'),outE('knows'))).values('name') > {code} > BUG. -- This message was sent by Atlassian JIRA (v6.4.14#64029)