From 390aef7563fcbc64e1dae598ac8483e359f49ad4 Mon Sep 17 00:00:00 2001 From: localhost Date: Fri, 22 Aug 2025 18:55:01 +0800 Subject: [PATCH] chore: modifying the visibility of the ScalarFunctionFactory field (#6797) --- src/common/function/src/function_factory.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/function/src/function_factory.rs b/src/common/function/src/function_factory.rs index 76b88daf99..8629abb028 100644 --- a/src/common/function/src/function_factory.rs +++ b/src/common/function/src/function_factory.rs @@ -22,8 +22,8 @@ use crate::scalars::udf::create_udf; /// A factory for creating `ScalarUDF` that require a function context. #[derive(Clone)] pub struct ScalarFunctionFactory { - pub(crate) name: String, - pub(crate) factory: Arc ScalarUDF + Send + Sync>, + pub name: String, + pub factory: Arc ScalarUDF + Send + Sync>, } impl ScalarFunctionFactory {