alamb commented on issue #9094:
URL:
https://github.com/apache/arrow-datafusion/issues/9094#issuecomment-1921795606
In particlar, this query fails with a panic:
```
❯ CREATE TABLE fixed_size_arrays
AS VALUES
(arrow_cast(make_array(',','a','b','c','d'), 'FixedSizeList(5, Utf8)')),
(NULL),
(arrow_cast(make_array(',','a','b','c','d'), 'FixedSizeList(5, Utf8)'))
;
thread 'main' panicked at
/Users/andrewlamb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrow-data-50.0.0/src/transform/mod.rs:358:13:
assertion `left == right` failed: Arrays with inconsistent types passed to
MutableArrayData
left: FixedSizeList(Field { name: "item", data_type: Utf8, nullable: true,
dict_id: 0, dict_is_ordered: false, metadata: {} }, 5)
right: FixedSizeList(Field { name: "item", data_type: Utf8, nullable: true,
dict_id: 0, dict_is_ordered: false, metadata: {} }, 1)
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
--
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]