theirix opened a new pull request, #16765:
URL: https://github.com/apache/datafusion/pull/16765

   ## Which issue does this PR close?
   
   - Closes #16513
   
   ## Rationale for this change
   
   This
   ```sql
   CREATE TABLE binaries AS VALUES (X'000103', 1);
   
   CREATE VIEW fixed_size_binary_views
   AS SELECT arrow_cast(column1, 'FixedSizeBinary(3)') as value, column2 as id 
FROM binaries;
   
   SELECT id, MIN(value) FROM fixed_size_binary_views GROUP BY id ORDER BY id;
   ```
   led to `Min/Max accumulator not implemented for type FixedSizeBinary`
   
   ## What changes are included in this PR?
   
   Extended function-aggregate implementation to support FixedSizeBinary using 
[new arrow-rs](https://github.com/apache/arrow-rs/issues/7674) 
`min_fixed_size_binary` function.
   
   Also, removed a leftover `FileTypeExt` after a previous refactoring
   
   ## Are these changes tested?
   
   - slt integration tests
   - manual tests
   
   ## Are there any user-facing changes?
   
   No
   


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to