lidavidm commented on pull request #11853:
URL: https://github.com/apache/arrow/pull/11853#issuecomment-992499323
Also note that I would expect this:
```diff
@@ -1255,7 +1255,7 @@ TYPED_TEST(TestFillNullNumeric,
FillForwardChunkedArray) {
this->AssertFillNullChunkedArray(
FillForwardNull,
this->chunked_array({"[1,2,3,null,null,4]", "[5, null, null]",
"[null, 7, null]"}),
- this->chunked_array({"[1,2,3,3,3,4]", "[5, 5, 5]", "[null, 7, 7]"}));
+ this->chunked_array({"[1,2,3,3,3,4]", "[5, 5, 5]", "[5, 7, 7]"}));
}
} // namespace compute
} // namespace arrow
```
i.e. the ChunkedArray should behave as one large array, not an array of
independent arrays.
--
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]