mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
chore: modifying the visibility of the ScalarFunctionFactory field (#6797)
This commit is contained in:
@@ -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<dyn Fn(FunctionContext) -> ScalarUDF + Send + Sync>,
|
||||
pub name: String,
|
||||
pub factory: Arc<dyn Fn(FunctionContext) -> ScalarUDF + Send + Sync>,
|
||||
}
|
||||
|
||||
impl ScalarFunctionFactory {
|
||||
|
||||
Reference in New Issue
Block a user