From b30d12a73fb9867180c2fdf8ddc818b45f957bac Mon Sep 17 00:00:00 2001 From: Michael J Ward Date: Tue, 29 Oct 2024 06:38:48 -0500 Subject: [PATCH] chore: re-export functions_window_common::ExpressionArgs (#13149) * chore: re-export functions_window_common::ExpressionArgs This struct is needed to implement the WindowUDFImpl trait. * cargo fmt --- datafusion/expr/src/function.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/datafusion/expr/src/function.rs b/datafusion/expr/src/function.rs index 199a91bf5ace..23ffc83e3549 100644 --- a/datafusion/expr/src/function.rs +++ b/datafusion/expr/src/function.rs @@ -27,6 +27,7 @@ pub use datafusion_functions_aggregate_common::accumulator::{ AccumulatorArgs, AccumulatorFactoryFunction, StateFieldsArgs, }; +pub use datafusion_functions_window_common::expr::ExpressionArgs; pub use datafusion_functions_window_common::field::WindowUDFFieldArgs; pub use datafusion_functions_window_common::partition::PartitionEvaluatorArgs;