Marko A. Rodriguez created TINKERPOP-1760:
---------------------------------------------
Summary: 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
{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)