AlenkaF commented on issue #48781: URL: https://github.com/apache/arrow/issues/48781#issuecomment-3771624378
Yes, the size limitation is by design, see [Size Limitations and Recommendations](https://arrow.apache.org/docs/cpp/arrays.html#size-limitations-and-recommendations) from the C++ User Guide. For this reason the arrays created in the above conversion become `ChunkedArrays` which can not be used to create a `RecordBatch`. If one uses ``pa.Table.from_pylist(pylist, schema=schema)`` in the above example, instead of using a `RecordBatch` class, the conversion works as the created `Table` can now hold `ChunkedArrays`. -- 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]
