alamb commented on code in PR #6368:
URL: https://github.com/apache/arrow-rs/pull/6368#discussion_r1754071315
##########
arrow/tests/pyarrow.rs:
##########
@@ -27,7 +28,9 @@ fn test_to_pyarrow() {
let a: ArrayRef = Arc::new(Int32Array::from(vec![1, 2]));
let b: ArrayRef = Arc::new(StringArray::from(vec!["a", "b"]));
- let input = RecordBatch::try_from_iter(vec![("a", a), ("b", b)]).unwrap();
+ // The "very long string" will not be inlined, and force the creation of a
data buffer.
Review Comment:
Also, can you please add a test for `BinaryViewArray as well?
--
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]