andygrove commented on issue #2087: URL: https://github.com/apache/datafusion-comet/issues/2087#issuecomment-3165880428
I suspect the root cause is trying to create a mutable buffer with a size greater than `isize::MAX`. From `arrow-buffer` `MutableBuffer`: ```rust pub fn with_capacity(capacity: usize) -> Self { let capacity = bit_util::round_upto_multiple_of_64(capacity); let layout = Layout::from_size_align(capacity, ALIGNMENT) .expect("failed to create layout for MutableBuffer"); ``` -- 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