jonahgao commented on issue #10989: URL: https://github.com/apache/datafusion/issues/10989#issuecomment-2177374339
It seems to be supported on the [main](https://github.com/apache/datafusion/commit/5cb1917f8c911184b030599f0a3cb86e2d602031) branch. ```sh DataFusion CLI v39.0.0 > create table t (a int[]) as values ([1,2,3]), ([4,5,6]); 0 row(s) fetched. Elapsed 0.030 seconds. > select ua from (select unnest(a) as ua from t) where ua > 3; +----+ | ua | +----+ | 4 | | 5 | | 6 | +----+ 3 row(s) fetched. Elapsed 0.009 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
