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
Optimize the performance of the following statement, currently the filter n.age<30 is not pushed down.
n.age<30
MATCH (v:player) MATCH (v)-[:like*2]-(n:player) WHERE n.age<30 and not (v)-->(n) RETURN distinct n
Describe the solution you'd like Add optimizer rule PushFilterDownRollUpApplyRule. Before: Filter(n.age<30 and not (v)-->(n)) -> RollUpApply After: Filter(not (v)-->(n)) -> RollUpApply -> Filter(n.age<30)
Additional context Is there room for optimization in the implementation of pattern expression?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Optimize the performance of the following statement, currently the filter
n.age<30
is not pushed down.Describe the solution you'd like
Add optimizer rule PushFilterDownRollUpApplyRule.
Before: Filter(n.age<30 and not (v)-->(n)) -> RollUpApply
After: Filter(not (v)-->(n)) -> RollUpApply -> Filter(n.age<30)
Additional context
Is there room for optimization in the implementation of pattern expression?
The text was updated successfully, but these errors were encountered: