lidavidm commented on PR #14347:
URL: https://github.com/apache/arrow/pull/14347#issuecomment-1273214650
No, although looking at it, the fix is a little weird - it means we're
comparing data of two different types, or the data doesn't match its type?
Regardless, it seems something like this would suffice?
```cpp
auto lhs = ArrayFromJSON(..., "[{"a": 2, "b": 3}]");
auto rhs = ArrayFromJSON(..., "[{"a": 2}]");
ASSERT_FALSE(lhs->Equals(*rhs)); // assuming this segfaults without this PR
```
--
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]