jayzhan211 commented on PR #12490: URL: https://github.com/apache/datafusion/pull/12490#issuecomment-2363012218
> I tried to add some sql test for `FixedSizeList` case but I can't find the way to create it through SQL API 🤔 > > ``` > > select arrow_cast([1,2,3], 'FixedSizeList(Int64, 10)'); > Error during planning: Unsupported type 'FixedSizeList(Int64, 10)'. Must be a supported arrow type name such as 'Int32' or 'Timestamp(Nanosecond, None)'. Error finding i64 for FixedSizeList, got 'Int64' > ``` The position is incorrect, ``` query ? select arrow_cast([1,2,3], 'FixedSizeList(3, Int32)'); ---- [1, 2, 3] ``` -- 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]
