This is an automated email from the ASF dual-hosted git repository. jiayuliu pushed a commit to branch move-udf-udaf-expr in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
commit 6ca6163923876ac38340c2019102fbb699388642 Author: Jiayu Liu <ji...@hey.com> AuthorDate: Sun Feb 6 13:29:20 2022 +0800 move accumulator and columnar value --- datafusion-expr/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/datafusion-expr/src/lib.rs b/datafusion-expr/src/lib.rs index 6c553d1..2dc9c17 100644 --- a/datafusion-expr/src/lib.rs +++ b/datafusion-expr/src/lib.rs @@ -18,6 +18,7 @@ mod accumulator; mod aggregate_function; mod built_in_function; +mod columnar_value; mod operator; mod signature; mod udaf; @@ -26,7 +27,7 @@ mod window_frame; mod window_function; use arrow::datatypes::DataType; -use datafusion_common::{ColumnarValue, Result}; +use datafusion_common::Result; use std::sync::Arc; /// Scalar function @@ -56,6 +57,7 @@ pub type StateTypeFunction = pub use accumulator::Accumulator; pub use aggregate_function::AggregateFunction; pub use built_in_function::BuiltinScalarFunction; +pub use columnar_value::ColumnarValue; pub use operator::Operator; pub use signature::{Signature, TypeSignature, Volatility}; pub use udaf::AggregateUDF;