You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "jiangzhx (via GitHub)" <gi...@apache.org> on 2023/06/05 15:35:05 UTC

[GitHub] [arrow-datafusion] jiangzhx commented on issue #6542: Error: push_down_projection

jiangzhx commented on issue #6542:
URL: https://github.com/apache/arrow-datafusion/issues/6542#issuecomment-1577030335

   i did some test on version  25.0.0. it's worked.
   
   ```
   #[tokio::test]
   async fn test_6542() -> Result<()> {
       let ctx = create_join_context()?;
   
       let sql_results = ctx
           .sql(
               "with input as (SELECT * FROM t1 OFFSET 1 limit 3)
               SELECT a
               from input
               cross join (select b from t2 limit 1) cross_table",
           )
           .await?
           .explain(true, false)?
           .show()
           .await?;
       Ok(())
   }
   
   ```


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org