Commits


zanmato1984 authored and Antoine Pitrou committed 0b481523b75
ARROW-10262: [C++] Fix TypeClass for BinaryScalar and LargeBinaryScalar Alias `TypeClass` in `BinaryScalar` and `LargeBinaryScalar` are seemingly typo-ed to be `BinaryScalar` and `LargeBinaryScalar`. This causes issues when using `ScalarType::TypeClass`, esp. with `TypeTrait` - i.e., compiler complains that there are no whatever members in specialized `TypeTrait<BinaryScalar>` and `TypeTrait<LargeBinaryScalar>`. Fixing them to `BinaryType` and `LargeBinaryType`. Closes #8423 from zanmato1984/arrow-10262 Authored-by: zanmato1984 <zanmato1984@gmail.com> Signed-off-by: Antoine Pitrou <antoine@python.org>