You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Marko A. Rodriguez (JIRA)" <ji...@apache.org> on 2017/08/28 15:29:00 UTC

[jira] [Created] (TINKERPOP-1760) OLAP compilation failing around ConnectiveStrategy

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)