-
Notifications
You must be signed in to change notification settings - Fork 1
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 reduce #80
fix reduce #80
Conversation
Several files have been changed following The actual changes are in |
src/multiplicity/mod.rs
Outdated
@@ -765,6 +767,7 @@ mod tests { | |||
} | |||
|
|||
#[test] | |||
#[ignore] |
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.
remove all these
self.split = self | ||
.split | ||
.map_last_reduce(|reduce| reduce.and(Split::group_by(expr))); | ||
self.split = self.split.and(Split::group_by(expr.into()).into()); |
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.
Are you sure?
@@ -907,6 +907,28 @@ mod tests { | |||
println!("query = {q}"); | |||
} | |||
|
|||
#[test] | |||
fn test_reduce_with_only_group_by_columns() { |
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.
Are we sure this is not working now without the change?
Is it working with piled map reduce: R, MR, RM, MRM, RMR
related to this issue.