mirror of
https://github.com/apache/superset.git
synced 2026-08-04 04:52:32 +00:00
The summary (totals) query was built with post_processing: [], which dropped the 'contribution' operation that renames percent-metric columns from `metric` to `%metric`. The totals query then returned `metric` while the grid read `%metric`, so the summary row showed 0.000%. Preserve the contribution (rename) operation in the totals query while still dropping the time-comparison operator and orderby. Add a regression test.