-
Notifications
You must be signed in to change notification settings - Fork 706
feat(frontend): create query handler #907
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #907 +/- ##
============================================
- Coverage 72.49% 72.44% -0.05%
Complexity 2766 2766
============================================
Files 936 937 +1
Lines 55268 55322 +54
Branches 1787 1787
============================================
+ Hits 40067 40079 +12
- Misses 14311 14353 +42
Partials 890 890
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
a351bfd to
f87d911
Compare
| impl ToBatchProst for BatchProject { | ||
| fn to_batch_prost_body(&self) -> NodeBody { | ||
| NodeBody::Project(ProjectNode { | ||
| select_list: vec![], |
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.
| select_list: vec![], | |
| select_list: self.logical.exprs.iter().map(|e| e.to_prost()), |
You can fully implement this in later pr, it should not be left blank.
I've glanced at ExprImpl and it seems to have no to_prost, it'd need some work.
What's changed and what's your intention?
implement query handler
Checklist
Refer to a related PR or issue link (optional)
#698