-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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: remove incorrect optimization for group-by #21691
Conversation
@danxmoran is there a good place to add an end-to-end select test (would the grace tests be the right place for that?) |
@lesam I'd vote for adding a new test to either You'd be the first person adding a test since Stuart ported the suite over from IDPE so you might hit some warts, but I think the overall framework is solid. |
@@ -88,6 +89,45 @@ func TestServer_Query_Chunked(t *testing.T) { | |||
test.Run(ctx, t, s) | |||
} | |||
|
|||
// Ensure a more complex group-by is correct | |||
func TestServer_Query_ComplexGroupby(t *testing.T) { |
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.
This test fails with the fastIdx
'optimisation'
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.
Thanks!
Closes #21639