goldmedal commented on code in PR #11681: URL: https://github.com/apache/datafusion/pull/11681#discussion_r1714166583
########## datafusion/core/src/datasource/view.rs: ########## @@ -61,6 +64,15 @@ impl ViewTable { Ok(view) } + fn apply_required_rule(logical_plan: LogicalPlan) -> Result<LogicalPlan> { + let options = ConfigOptions::default(); + Analyzer::with_rules(vec![Arc::new(ExpandWildcardRule::new())]).execute_and_check( + logical_plan, + &options, + |_, _| {}, + ) + } Review Comment: To generate the correct schema, we need to apply `ExpandWildcardRule` for the plan of the view first -- 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-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org