Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datafusion-federation/src/plan_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ use datafusion::{
};

pub struct FederatedPlanNode {
plan: LogicalPlan,
planner: Arc<dyn FederationPlanner>,
pub plan: LogicalPlan,
pub planner: Arc<dyn FederationPlanner>,
}

impl FederatedPlanNode {
Expand Down
10 changes: 5 additions & 5 deletions datafusion-federation/src/sql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use datafusion::{

pub use executor::{AstAnalyzer, LogicalOptimizer, SQLExecutor, SQLExecutorRef};
pub use schema::{MultiSchemaProvider, SQLSchemaProvider};
pub use table::{RemoteTable, SQLTableSource};
pub use table::{RemoteTable, SQLTable, SQLTableSource};
pub use table_reference::RemoteTableRef;

use crate::{
Expand All @@ -38,8 +38,8 @@ use crate::{
// SQLFederationProvider provides federation to SQL DMBSs.
#[derive(Debug)]
pub struct SQLFederationProvider {
optimizer: Arc<Optimizer>,
executor: Arc<dyn SQLExecutor>,
pub optimizer: Arc<Optimizer>,
pub executor: Arc<dyn SQLExecutor>,
}

impl SQLFederationProvider {
Expand Down Expand Up @@ -123,8 +123,8 @@ impl OptimizerRule for SQLFederationOptimizerRule {
}

#[derive(Debug)]
struct SQLFederationPlanner {
executor: Arc<dyn SQLExecutor>,
pub struct SQLFederationPlanner {
pub executor: Arc<dyn SQLExecutor>,
}

impl SQLFederationPlanner {
Expand Down