Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-1877: Fix incorrect equals method in JsonStringArrayList
Currently it uses containsAll which could return wrong results. Ex. e1: [true, true, false], e2: [true, false, false]. Remove the equals method and fallback on super class method which has the correct implementation.
- Loading branch information