Open
Description
Is your feature request related to a problem or challenge?
In our system we have certain FixedSizeBinary columns that are now starting to get used in joins. Therefore we are hitting the min/max accumulator paths where FixedSizeBinary is not supported
datafusion/datafusion/functions-aggregate/src/min_max.rs
Lines 600 to 618 in b6c8cc5
Describe the solution you'd like
In arrow 55.2 release, the min/max functions for FixedSizeBinary will be available apache/arrow-rs#7674
Use these in the above referenced code
Describe alternatives you've considered
As a workaround we leverage schema adapter to use Binary. This workaround is relatively straightforward in concept. In our code base it is a little more complicated due to other reasons.
This would allow out of the box datafusion to just work with these column types.
Additional context
No response