You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/03/20 10:25:52 UTC

[GitHub] [arrow-datafusion] alamb commented on issue #2041: Wildcard should not be allowed in LogicalPlan

alamb commented on issue #2041:
URL: https://github.com/apache/arrow-datafusion/issues/2041#issuecomment-1073219075


   FWIW I would expect this code:
   
   ```rust
   let plan = LogicalPlanBuilder::scan_empty(Some("t1"), &employee_schema(), None)?
               .join_using(&t2, JoinType::Inner, vec!["id"])?
               .project(vec![Expr::Wildcard])? // my question about here
               .build()?;
   ```
   
   To generate a DataFusionError with "Wildcard expressions are not valid in a logical query plan"


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