thomasaarholt commented on issue #1260: URL: https://github.com/apache/arrow-adbc/issues/1260#issuecomment-1794918298
I believe the appropriate type to cast to is `ARRAY`. [Snowflake docs here](https://docs.snowflake.com/en/sql-reference/data-types-semistructured#array). The Array type is not a fixed-shape array like e.g. in numpy (or polars). From the docs: > A Snowflake ARRAY is declared without specifying the number of elements. An ARRAY can grow dynamically based on operations such as [ARRAY_APPEND](https://docs.snowflake.com/en/sql-reference/functions/array_append). Snowflake does not currently support fixed-size arrays. -- 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]
