TheBuilderJR commented on issue #13625:
URL: https://github.com/apache/datafusion/issues/13625#issuecomment-2515111422
Thanks @holicc and @findepi I think I looked at the wrong query in the logs.
You can reproduce with something like this
```
SELECT
EXTRACT(YEAR FROM timestamp) as year,
EXTRACT(MONTH FROM timestamp) as month,
COUNT(*) as count
FROM logs
WHERE timestamp IS NOT NULL
GROUP BY
EXTRACT(YEAR FROM timestamp),
EXTRACT(MONTH FROM timestamp)
ORDER BY year, month
```
--
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]