chetan-habu commented on issue #4724:
URL:
https://github.com/apache/datafusion-comet/issues/4724#issuecomment-5236653985
above Issue reproducible with v0.17.0 using below sample queries and data.
`SELECT
imp_campaign_id,
imp_adgroup_id,
ARRAY_JOIN(COLLECT_SET(STRING(imp_creative_id)), ',') AS creatives,
COUNT(DISTINCT imp_impression_id) AS imp_count
FROM impressions
GROUP BY imp_campaign_id, imp_adgroup_id`
`SELECT
imp_campaign_id,
COUNT(DISTINCT imp_user_id) AS users,
COLLECT_SET(imp_creative_id) AS creatives
FROM impressions
GROUP BY imp_campaign_id`
[impressions.csv](https://github.com/user-attachments/files/30888137/impressions.csv)
--
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]