SteveLauC commented on issue #9319:
URL: 
https://github.com/apache/arrow-datafusion/issues/9319#issuecomment-1960636858

   Cannot reproduce with the rust library DataFusion 36:
   
   ```sh
   $ rg datafusion Cargo.toml
   18:datafusion = "36.0.0"
   
   $ cat src/main.rs
   #[tokio::main(flavor = "current_thread")]
   async fn main() -> Result<()> {
       let ctx = SessionContext::new();
       let sql = "explain select 1";
       let df = ctx.sql("explain select 1").await?;
       df.show().await?;
   
       Ok(())
   }
   
   $ cargo r -q
   +---------------+--------------------------------------+
   | plan_type     | plan                                 |
   +---------------+--------------------------------------+
   | logical_plan  | Projection: Int64(1)                 |
   |               |   EmptyRelation                      |
   | physical_plan | ProjectionExec: expr=[1 as Int64(1)] |
   |               |   PlaceholderRowExec                 |
   |               |                                      |
   +---------------+--------------------------------------+
   ```


-- 
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]

Reply via email to