You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new DataFusion deprecates how its UDAF can be written before, specifically the AggregateUDF::new:
implAggregateUDF{/// Create a new AggregateUDF////// See [`AggregateUDFImpl`] for a more convenient way to create a/// `AggregateUDF` using trait objects#[deprecated(since = "34.0.0", note = "please implement AggregateUDFImpl instead")]pubfn new(name:&str,signature:&Signature,return_type:&ReturnTypeFunction,accumulator:&AccumulatorFactoryFunction,state_type:&StateTypeFunction,) -> Self{
We should use the new implementation once #3661 is merged.
Implementation challenges
No response
The text was updated successfully, but these errors were encountered:
What type of enhancement is this?
Other
What does the enhancement do?
The new DataFusion deprecates how its UDAF can be written before, specifically the
AggregateUDF::new
:We should use the new implementation once #3661 is merged.
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: