xiangfu0 opened a new issue, #11899:
URL: https://github.com/apache/pinot/issues/11899

   E.g. 
   ```
   SELECT 
       sum(m1) FILTER d1=1 ,
       count(*) 
   WHERE d2=2 
   GROUP BY d3
   ```
   For the above query, though
   ```
   SELECT 
       count(*) 
   WHERE d2=2 
   GROUP BY d3
   ```
   can leverage startree index, but when combined with `sum(m1) FILTER d1=1`, 
the startree index is not used.
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to