qazxcdswe123 commented on issue #14910: URL: https://github.com/apache/datafusion/issues/14910#issuecomment-2690157890
After some digging I found that this only occur when using `WINDOW` clause. So this one works ``` SELECT t1.v1, SUM(t1.v1) OVER (ORDER BY t1.v1 ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) + 1 FROM generate_series(1, 10000) AS t1(v1); ``` -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org