jonmmease opened a new issue, #7473:
URL: https://github.com/apache/arrow-datafusion/issues/7473
### Describe the bug
DataFusion raises an error when a `List` column is used as the GROUP BY
column
### To Reproduce
```sql
SELECT COUNT(*) FROM (VALUES (['a', 'b'], 1), (['a', 'b'], 2)) as values0
GROUP BY column1;
```
```
External error: Internal error: Unsupported data type in hasher: List(Field
{ name: "item", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered:
false, metadata: {} }). This was likely caused by a bug in DataFusion's code
and we would welcome that you file an bug report in our issue tracker
```
### Expected behavior
Successful GROUP BY
### Additional context
Apologies if this is tracked elsewhere, but I didn't find it.
--
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]