Weijun-H commented on issue #9151: URL: https://github.com/apache/arrow-datafusion/issues/9151#issuecomment-1933258538
This issue seems to have been resolved. ``` DataFusion CLI v35.0.0 ❯ create table test as (select arrow_cast([1,2], 'FixedSizeList(2, Int64)') as f); 0 rows in set. Query took 0.010 seconds. ❯ insert into test values ([1, 2]); +-------+ | count | +-------+ | 1 | +-------+ 1 row in set. Query took 0.006 seconds. ❯ insert into test values (arrow_cast([1,2], 'FixedSizeList(2, Int64)') ); +-------+ | count | +-------+ | 1 | +-------+ 1 row in set. Query took 0.004 seconds. ``` -- 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]
