dang-stripe commented on issue #15121: URL: https://github.com/apache/pinot/issues/15121#issuecomment-2683208509
I've narrowed it down to this part of the query. * when i comment the sum agg out it works * when i switch to count/min/max it works * when i switch to count(*) filter it still fails ``` "changes" AS ( SELECT "event_date", "group_id", SUM(CASE WHEN "event_type" = 'START' THEN 1 ELSE 0 END) AS "started", SUM(CASE WHEN "event_type" = 'END' THEN 1 ELSE 0 END) AS "ended", SUM(CASE WHEN "event_type" = 'START' THEN 1 WHEN "event_type" = 'END' THEN -1 ELSE 0 END) AS "changed" FROM "events" GROUP BY 1, 2 ), ``` -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org