-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Enhancement/eliminate invalid filter #5634
Merged
yixinglu
merged 6 commits into
vesoft-inc:master
from
Shylock-Hg:enhancement/eliminate-invalid-filter
Jul 13, 2023
Merged
Enhancement/eliminate invalid filter #5634
yixinglu
merged 6 commits into
vesoft-inc:master
from
Shylock-Hg:enhancement/eliminate-invalid-filter
Jul 13, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jievince
approved these changes
Jul 13, 2023
czpmango
reviewed
Jul 13, 2023
MATCH (v:player) WHERE v.not_exists_tag.name == 'Tim Duncan' RETURN v.player.age AS age | ||
""" | ||
Then the result should be, in any order: | ||
| age | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add some cases:
MATCH (v)-[e]->() where e.nonexist_prop > 3 return v
MATCH (v:player)-[e]->(n) with n.nonexist.name AS tname, count(*) AS acount where tname > "A" return count(*) AS c
MATCH (v:player)-[e]->(n) with n.nonexist.name AS tname, count(*) AS acount where tname > "A" OPTIONAL MATCH (v:player) RETURN v
MATCH (v:player) OPTIONAL MATCH (v:player)-[e]->(n) with n.nonexist.name AS tname, count(*) AS acount where tname > "A" RETURN *
czpmango
approved these changes
Jul 13, 2023
Sophie-Xie
pushed a commit
that referenced
this pull request
Jul 20, 2023
* Fix crash double free of expr. * Change issue id. * Elimintate invalid property filter.
Sophie-Xie
added a commit
that referenced
this pull request
Jul 20, 2023
* fix traverse build path memory tracker (#5619) * Optimize the write performance when host is down (#5571) * Optimize the write performance when host is down * fix the comments --------- Co-authored-by: Sophie <[email protected]> * Fix too many logs print when listing sessions (#5618) * Set min_level_for_custom_filter as 0 by default to delete expired d… (#5622) Reset min_level_for_custom_filter as 0 by default to delete expired data during compaction * Revert "Revert "Change ccache to sccache"" (#5623) * Revert "Revert "Change ccache to sccache" (#5613)" This reverts commit 08a5d90. * Update pull_request.yml * Revert "Change ccache to sccache" (#5627) Revert "Revert "Revert "Change ccache to sccache"" (#5623)" This reverts commit c1b433d. * fix all path memory tracker (#5621) * fix all path memory tracker * fix error * Update pull_request.yml enable sccache debug log * Update pull_request.yml add ninja -v * Update pull_request.yml * Update pull_request.yml * Update pull_request.yml * Update pull_request.yml --------- Co-authored-by: George <[email protected]> Co-authored-by: Sophie <[email protected]> * Fix edge all predicate embedding when generating path (#5631) * Fix edge all predicate embedding when generate path * fmt * Enhancement/eliminate invalid filter (#5634) * Fix crash double free of expr. * Change issue id. * Elimintate invalid property filter. * support find circular (#5636) Co-authored-by: Sophie <[email protected]> * fix allpath memory tracker (#5640) fix allpath memory traker * fix_delete_validate (#5645) add test case --------- Co-authored-by: jimingquan <[email protected]> Co-authored-by: Ryan <[email protected]> Co-authored-by: Songqing Zhang <[email protected]> Co-authored-by: George <[email protected]> Co-authored-by: kyle.cao <[email protected]> Co-authored-by: shylock <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What type of PR is this?
What problem(s) does this PR solve?
Issue(s) number:
Close #5633
Description:
Use directly empty result for invalid property filter by optimize rule.
How do you solve it?
Special notes for your reviewer, ex. impact of this fix, design document, etc:
Checklist:
Tests:
Affects:
Release notes:
Please confirm whether to be reflected in release notes and how to describe: