Daniel Kuppitz created TINKERPOP-1323:
-----------------------------------------
Summary: ComputerVerificationStrategy fails for nested match()
steps
Key: TINKERPOP-1323
URL: https://issues.apache.org/jira/browse/TINKERPOP-1323
Project: TinkerPop
Issue Type: Bug
Affects Versions: 3.1.2-incubating, 3.2.0-incubating
Reporter: Daniel Kuppitz
Fix For: 3.1.3, 3.2.1
A nested {{match()}} can leave the star-graph w/o the compiler complaining
about it; this ultimately leads to a {{RuntimeException}}. The most simple
query to reproduce it:
{code}
g = TinkerFactory.createModern().traversal().withComputer()
g.V().filter(match(
__.as("project").in("created").as("person"),
__.as("person").values("name").as("name")
))
{code}
Of course the filter step is pointless in this example, but that's the easiest
way to reproduce it.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)