Jackie-Jiang commented on issue #15121:
URL: https://github.com/apache/pinot/issues/15121#issuecomment-2686066441
@dang-stripe
Is it constantly reproducible with the below query? If you can provide the
minimum query that can reproduce this issue, we can also try to reproduce it
locally to further debug the issue.
```
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: [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]