You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
selectsum(case when ws_wholesale_cost >10 then 1 else 0 end) as a,
sum(case when ws_wholesale_cost >20 then 1 else 0 end) as b,
sum(case when ws_wholesale_cost >30 then 1 else 0 end) as c
from web_sales;
The query time with Comet disabled is much better than when Comet is enabled.
What is the problem the feature request solves?
Given this SQL query:
The query time with Comet disabled is much better than when Comet is enabled.
Disabled:
Enabled:
28 of the 99 TPC-DS queries use CASE WHEN, so optimizing this could have a nice impact on overall performance of that benchmark.
Describe the potential solution
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: