-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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: Show Totals error with sort and group by together #19072
fix: Show Totals error with sort and group by together #19072
Conversation
Codecov Report
@@ Coverage Diff @@
## master #19072 +/- ##
=======================================
Coverage 66.50% 66.50%
=======================================
Files 1642 1642
Lines 63442 63442
Branches 6439 6439
=======================================
+ Hits 42189 42191 +2
+ Misses 19583 19582 -1
+ Partials 1670 1669 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
/testenv up |
@rusackas Ephemeral environment spinning up at http://35.89.28.169:8080. Credentials are |
The first two screenshots are super low resolution for some reason. It'd also be helpful to put the repro steps in the Testing section of the PR description: Repro steps
|
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.
Works well in testing! LGTM!
Ephemeral environment shutdown and build artifacts deleted. |
(cherry picked from commit bc6aad0)
SUMMARY
Before this update, creating a chart with
show total
flag on,group by
andsort by
, we used to get error response from the server, because as you can see from the below screenshot, the second query was invalid.So, I removed
sort by
anddesc
from the extra query (which is being created when we flag show total on).BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
BEFORE
AFTER
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION