comphead commented on issue #9359: URL: https://github.com/apache/datafusion/issues/9359#issuecomment-2155697663
the first use case is to try spilling for buffered data, as the buffered data comes in full size and eats the memory. This is proved by query below ``` > select * from (select unnest(range(0, 1)) id) t inner join (select unnest(range(0, 100000)) id) t1 on t.id = t1.id; ``` -- 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]
