jonahgao commented on issue #10764: URL: https://github.com/apache/datafusion/issues/10764#issuecomment-2147028848
It appears to be successful on the current [main](https://github.com/apache/datafusion/commit/6a0a2dce90fde73d36a5451a59381cd357fae648) branch. ```sh DataFusion CLI v38.0.0 > create or replace view v as select struct(1, 'b')['c1']; 0 row(s) fetched. Elapsed 0.005 seconds. > select * from v; +--------------------------------+ | struct(Int64(1),Utf8("b"))[c1] | +--------------------------------+ | b | +--------------------------------+ 1 row(s) fetched. Elapsed 0.006 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]
