findepi opened a new issue, #16442:
URL: https://github.com/apache/datafusion/issues/16442
### Is your feature request related to a problem or challenge?
This should work
```diff
$ git diff datafusion/sqllogictest/test_files/array.slt
diff --git datafusion/sqllogictest/test_files/array.slt
datafusion/sqllogictest/test_files/array.slt
index a2640fa98..0e5644a89 100644
--- datafusion/sqllogictest/test_files/array.slt
+++ datafusion/sqllogictest/test_files/array.slt
@@ -7936,6 +7936,18 @@ select arrow_typeof(a) from fixed_size_col_table;
FixedSizeList(Field { name: "item", data_type: Int32, nullable: true,
dict_id: 0, dict_is_ordered: false, metadata: {} }, 3)
FixedSizeList(Field { name: "item", data_type: Int32, nullable: true,
dict_id: 0, dict_is_ordered: false, metadata: {} }, 3)
+query ?
+SELECT DISTINCT a FROM fixed_size_col_table
+----
+[1, 2, 3]
+[4, 5, 6]
+
+query ?I
+SELECT a, count(*) FROM fixed_size_col_table GROUP BY a
+----
+[1, 2, 3] 1
+[4, 5, 6] 1
+
statement error
create table varying_fixed_size_col_table (a int[3]) as values ([1,2,3]),
([4,5]);
```
### Describe the solution you'd like
_No response_
### Describe alternatives you've considered
Perhaps https://github.com/apache/arrow-rs/pull/7705
### Additional context
_No response_
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]