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
2 changes: 1 addition & 1 deletion datafusion/core/src/logical_plan/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ use std::{
sync::Arc,
};

use super::dfschema::ToDFSchema;
use super::{exprlist_to_fields, Expr, JoinConstraint, JoinType, LogicalPlan, PlanType};
use crate::logical_plan::{
columnize_expr, normalize_col, normalize_cols, provider_as_source,
rewrite_sort_cols_by_aggs, Column, CrossJoin, DFField, DFSchema, DFSchemaRef, Limit,
Partitioning, Repartition, Values,
};
use crate::sql::utils::group_window_expr_by_sort_keys;
use datafusion_common::ToDFSchema;

/// Default table name for unnamed table
pub const UNNAMED_TABLE: &str = "?table?";
Expand Down
21 changes: 0 additions & 21 deletions datafusion/core/src/logical_plan/dfschema.rs

This file was deleted.

7 changes: 2 additions & 5 deletions datafusion/core/src/logical_plan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,18 @@
//! physical query plans and executed.

pub(crate) mod builder;
mod dfschema;
mod expr;
mod expr_rewriter;
mod expr_simplier;
mod expr_visitor;
mod operators;
pub mod plan;
mod registry;
pub mod window_frames;
pub use builder::{
build_join_schema, union_with_alias, LogicalPlanBuilder, UNNAMED_TABLE,
};
pub use datafusion_expr::expr_fn::binary_expr;
pub use dfschema::{DFField, DFSchema, DFSchemaRef, ToDFSchema};
pub use datafusion_common::{DFField, DFSchema, DFSchemaRef, ToDFSchema};
pub use datafusion_expr::{expr_fn::binary_expr, Operator};

pub use crate::logical_expr::ExprSchemable;
pub use expr::{
Expand All @@ -57,7 +55,6 @@ pub use expr_rewriter::{
};
pub use expr_simplier::{ExprSimplifiable, SimplifyInfo};
pub use expr_visitor::{ExprVisitable, ExpressionVisitor, Recursion};
pub use operators::Operator;
pub use plan::{provider_as_source, source_as_provider};
pub use plan::{
CreateCatalog, CreateCatalogSchema, CreateExternalTable, CreateMemoryTable,
Expand Down
18 changes: 0 additions & 18 deletions datafusion/core/src/logical_plan/operators.rs

This file was deleted.