Omega359 commented on code in PR #15119: URL: https://github.com/apache/datafusion/pull/15119#discussion_r2007427604
########## datafusion/core/src/execution/session_state.rs: ########## @@ -1950,6 +1955,16 @@ mod tests { use super::{SessionContextProvider, SessionStateBuilder}; use crate::datasource::MemTable; use crate::execution::context::SessionState; + use crate::{ + common::assert_contains, + config::ConfigOptions, + datasource::{empty::EmptyTable, provider_as_source}, + logical_expr::{ + planner::ExprPlanner, AggregateUDF, ScalarUDF, TableSource, WindowUDF, + }, + physical_plan::ExecutionPlan, + sql::{planner::ContextProvider, ResolvedTableReference, TableReference}, + }; Review Comment: You may as well pull in the other 2 crate lines above if you are going to use this import style. -- 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