alamb commented on issue #10303: URL: https://github.com/apache/datafusion/issues/10303#issuecomment-2098927570
I think we may be able to use the syntax https://docs.rs/sqlparser/latest/sqlparser/ast/enum.DataType.html#variant.Array So something like this to create a 256 integer array ```sql CREATE TABLE foo(my_col INT[256]) ``` This was added by @universalmind303 in https://github.com/sqlparser-rs/sqlparser-rs/issues/1230 (and will be available once https://github.com/apache/datafusion/pull/10392 gets merged -- shout out to @tisonkun and @jmhain) -- 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]
