maartenbreddels opened a new pull request #8628:
URL: https://github.com/apache/arrow/pull/8628
The Python test fails for the `large_binary` test, with output:
```
arr = pa.array([b'a', b'bb', None], type=pa.large_binary())
result = arr.fill_null('ccc')
expected = pa.array([b'a', b'bb', b'ccc'])
> assert result.equals(expected)
E assert False
E + where False = <built-in method equals of
pyarrow.lib.LargeBinaryArray object at 0x7f762fb38520>(<pyarrow.lib.BinaryArray
object at 0x7f762fb38600>\n[\n 61,\n 6262,\n 636363\n])
E + where <built-in method equals of pyarrow.lib.LargeBinaryArray
object at 0x7f762fb38520> = <pyarrow.lib.LargeBinaryArray object at
0x7f762fb38520>\n[\n 61,\n 6262,\n 636363\n].equals
```
Could this be a bug in equals for LargeBinaryArray?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]