We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/opencypher/cypher-for-apache-spark/blob/3afbaabb55d6ec808e7b181f80911e332fef8aa1/src/test/scala/org/opencypher/caps/ir/impl/block/TypedMatchBlockTest.scala#L47
The text was updated successfully, but these errors were encountered:
Move to trello
Sorry, something went wrong.
These should be able to have the same plan:
it("should plan efficiently") { val given = initGraph("CREATE ()-[:FOO]->()-[:BAR]->()") PrintRelationalPlan.set() given.cypher( """ |MATCH ()-[r]->() |WHERE type(r) = 'FOO' |RETURN r """.stripMargin).show given.cypher( """ |MATCH ()-[r:FOO]->() |RETURN r """.stripMargin).show }
No branches or pull requests
https://github.com/opencypher/cypher-for-apache-spark/blob/3afbaabb55d6ec808e7b181f80911e332fef8aa1/src/test/scala/org/opencypher/caps/ir/impl/block/TypedMatchBlockTest.scala#L47
The text was updated successfully, but these errors were encountered: