Skip to content

Commit

Permalink
use coercible signature
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal committed Sep 3, 2024
1 parent ff3863d commit 4f06d04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion datafusion/functions-aggregate/src/kurtosis_pop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ impl Default for KurtosisPopFunction {
impl KurtosisPopFunction {
pub fn new() -> Self {
Self {
signature: Signature::numeric(1, Volatility::Immutable),
signature: Signature::coercible(
vec![DataType::Float64],
Volatility::Immutable,
),
}
}
}
Expand Down

0 comments on commit 4f06d04

Please sign in to comment.