metalmatze opened a new issue, #6665:
URL: https://github.com/apache/arrow-rs/issues/6665

   **Is your feature request related to a problem or challenge? Please describe 
what you are trying to do.**
   <!--
   A clear and concise description of what the problem is. Ex. I'm always 
frustrated when [...] 
   (This section helps Arrow developers understand the context and *why* for 
this feature, in addition to  the *what*)
   -->
   
   Currently, I get the following error: 
   ```
   Arrow error: Cast error: Unsupported output type for dictionary packing: 
FixedSizeBinary(16)
   ```
    
   **Describe the solution you'd like**
   <!--
   A clear and concise description of what you want to happen.
   -->
   
   I would like to be able to cast the type.
   This is needed to `group by` in Datafusion.
   
   **Describe alternatives you've considered**
   <!--
   A clear and concise description of any alternative solutions or features 
you've considered.
   -->
   
   Maybe first casting to utf8 or something, but that seems more like a work 
around in the query itself. 
   
   **Additional context**
   <!--
   Add any other context or screenshots about the feature request here.
   -->
   
   A Datafusion query will throw the above error if the column `foo` has type 
FixedSizeBinary(16). 
   ```sql
   SELECT foo, count(bar) FROM table GROUP BY foo;
   ```


-- 
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]

Reply via email to