Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
In cases where Arrow objects are particularly large, this can result in an integer overflow when returning their size. See discussion on https://github.com/apache/arrow/pull/11783 for more details of a possible solution.
library(arrow) test_array1 <- Array$create(raw(2^31 - 1)) test_array2 <- Array$create(raw(1)) big_chunked <- chunked_array(test_array1, test_array2) big_table <- Table$create(col = big_chunked) big_table$num_rows # NA
Attachments
Issue Links
- links to