-
Notifications
You must be signed in to change notification settings - Fork 9
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
Implements OUTER bag operators #400
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #400 +/- ##
==========================================
+ Coverage 81.16% 81.41% +0.24%
==========================================
Files 56 56
Lines 14753 14912 +159
Branches 14753 14912 +159
==========================================
+ Hits 11974 12140 +166
+ Misses 2260 2251 -9
- Partials 519 521 +2
☔ View full report in Codecov by Sentry. |
Conformance comparison report
Number passing in both: 5268 Number failing in both: 1004 Number passing in Base (bb3487b) but now fail: 0 Number failing in Base (bb3487b) but now pass: 48 The following test(s) were previously failing but now pass. Before merging, confirm they are intended to pass: Click here to see
|
7dcf855
to
eb33c41
Compare
4fe4a97
to
a8e8974
Compare
622e861
to
2b73f21
Compare
and further testing need addressed
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.
I proposed some clean-up via commit that I pushed. Everything else LGTM.
Thanks, clean-up changes in 10745d3 (e.g. using itertools, iterating over |
Implements the OUTER bag operators. Corrects a bug with the parsed set quantifier for bag operators. Previously when a set quantifier was unspecified, the default was
ALL
. Changed to beDISTINCT
.Other changes from this PR
SetExpr
toBagOpExpr
andSetOp
toBagOp
Parsed
struct'sast
field is now anast::AstNode<ast::TopLevelQuery>
Evaluable
trait'supdate_input
fn now also takes in anEvalContext
branch_num
is needed in logical plan #237.branch_num
is now used for bag operators. Removed the comment foradd_flow_with_branch_num
fn.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.