@@ -779,6 +779,7 @@ impl PartialOrd for dyn AggregateUDFImpl {
779
779
}
780
780
}
781
781
782
+ /// Encapsulates default implementation of [`AggregateUDFImpl::udaf_default_schema_name`].
782
783
pub fn udaf_default_schema_name < F : AggregateUDFImpl + ?Sized > (
783
784
func : & F ,
784
785
params : & AggregateFunctionParams ,
@@ -832,6 +833,7 @@ pub fn udaf_default_schema_name<F: AggregateUDFImpl + ?Sized>(
832
833
Ok ( schema_name)
833
834
}
834
835
836
+ /// Encapsulates default implementation of [`AggregateUDFImpl::udaf_default_human_display`].
835
837
pub fn udaf_default_human_display < F : AggregateUDFImpl + ?Sized > (
836
838
func : & F ,
837
839
params : & AggregateFunctionParams ,
@@ -871,6 +873,7 @@ pub fn udaf_default_human_display<F: AggregateUDFImpl + ?Sized>(
871
873
Ok ( schema_name)
872
874
}
873
875
876
+ /// Encapsulates default implementation of [`AggregateUDFImpl::udaf_default_window_function_schema_name`].
874
877
pub fn udaf_default_window_function_schema_name < F : AggregateUDFImpl + ?Sized > (
875
878
func : & F ,
876
879
params : & WindowFunctionParams ,
@@ -924,6 +927,7 @@ pub fn udaf_default_window_function_schema_name<F: AggregateUDFImpl + ?Sized>(
924
927
Ok ( schema_name)
925
928
}
926
929
930
+ /// Encapsulates default implementation of [`AggregateUDFImpl::udaf_default_display_name`].
927
931
pub fn udaf_default_display_name < F : AggregateUDFImpl + ?Sized > (
928
932
func : & F ,
929
933
params : & AggregateFunctionParams ,
@@ -965,6 +969,7 @@ pub fn udaf_default_display_name<F: AggregateUDFImpl + ?Sized>(
965
969
Ok ( display_name)
966
970
}
967
971
972
+ /// Encapsulates default implementation of [`AggregateUDFImpl::udaf_default_window_function_display_name`].
968
973
pub fn udaf_default_window_function_display_name < F : AggregateUDFImpl + ?Sized > (
969
974
func : & F ,
970
975
params : & WindowFunctionParams ,
@@ -1018,6 +1023,7 @@ pub fn udaf_default_window_function_display_name<F: AggregateUDFImpl + ?Sized>(
1018
1023
Ok ( display_name)
1019
1024
}
1020
1025
1026
+ /// Encapsulates default implementation of [`AggregateUDFImpl::udaf_default_return_field`].
1021
1027
pub fn udaf_default_return_field < F : AggregateUDFImpl + ?Sized > (
1022
1028
func : & F ,
1023
1029
arg_fields : & [ FieldRef ] ,
0 commit comments