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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to