In https://github.com/crate/crate/pull/19715, we optimize queries where one or more distinct aggregations use the same column. We have another case, which are aggregations with different columns, e.g. ```sql SELECT COUNT(DISTINCT RegionID), COUNT(DISTINCT UserID) FROM hits ```
In #19715, we optimize queries where one or more distinct aggregations use the same column.
We have another case, which are aggregations with different columns, e.g.