-
Notifications
You must be signed in to change notification settings - Fork 447
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
fix(interactive): Convert Label Condition to Type Constraint #3441
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3441 +/- ##
=======================================
Coverage 40.90% 40.90%
=======================================
Files 109 109
Lines 11343 11343
=======================================
Hits 4640 4640
Misses 6703 6703 Continue to review full report in Codecov by Sentry.
|
public void push_filter_5_test() { | ||
RelNode node = | ||
com.alibaba.graphscope.cypher.antlr4.Utils.eval( | ||
"Match (a)-[b]-(c:person) Where labels(a)='person' and a.name =" |
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.
这里缺少一个type(a) = 'xx',以及判断边类型的case.
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 end-to-end tests in c8a94cd
What do these changes do?
as titled.
Related issue number
Fixes #3378