Skip to content

Commit

Permalink
Remove deprecated datafusion_physical_expr::functions module
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Sep 17, 2024
1 parent a08f923 commit f6d9e5c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 125 deletions.
122 changes: 0 additions & 122 deletions datafusion/physical-expr/src/functions.rs

This file was deleted.

1 change: 0 additions & 1 deletion datafusion/physical-expr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ pub mod binary_map {
}
pub mod equivalence;
pub mod expressions;
pub mod functions;
pub mod intervals;
pub mod math_expressions;
mod partitioning;
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/execution_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub use datafusion_execution::{RecordBatchStream, SendableRecordBatchStream};
pub use datafusion_expr::{Accumulator, ColumnarValue};
pub use datafusion_physical_expr::window::WindowExpr;
pub use datafusion_physical_expr::{
expressions, functions, udf, Distribution, Partitioning, PhysicalExpr,
expressions, udf, Distribution, Partitioning, PhysicalExpr,
};
use datafusion_physical_expr::{EquivalenceProperties, LexOrdering, PhysicalSortExpr};
use datafusion_physical_expr_common::sort_expr::LexRequirement;
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub use datafusion_expr::{Accumulator, ColumnarValue};
pub use datafusion_physical_expr::window::WindowExpr;
use datafusion_physical_expr::PhysicalSortExpr;
pub use datafusion_physical_expr::{
expressions, functions, udf, Distribution, Partitioning, PhysicalExpr,
expressions, udf, Distribution, Partitioning, PhysicalExpr,
};

pub use crate::display::{DefaultDisplay, DisplayAs, DisplayFormatType, VerboseDisplay};
Expand Down

0 comments on commit f6d9e5c

Please sign in to comment.