-
Notifications
You must be signed in to change notification settings - Fork 752
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
chore(query): test for enable_experimental_aggregate_hashtable = 1 #14564
Conversation
Docker Image for PR
|
@@ -149,6 +149,10 @@ impl<Method: HashMethodBounds> AccumulatingTransform for TransformPartialGroupBy | |||
const NAME: &'static str = "TransformPartialGroupBy"; | |||
|
|||
fn transform(&mut self, block: DataBlock) -> Result<Vec<DataBlock>> { | |||
if block.is_empty() { |
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 think you did not find the key reason for this bug.
Why the tests failed when you enable enable_experimental_aggregate_hashtable yet it succeeded without this config ? There must be some bug inside the new agg.
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 will check it
…fix/agghashtable_test
…tabend into fix/agghashtable_test
continue in #14544 |
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary
Fix the decimal type mismatch and a bug related to
set enable_experimental_aggregate_hashtable=1;
.Tests
Type of change
This change is