Skip to content

Commit dbfc61e

Browse files
Update vortex-array/src/aggregate_fn/fns/sum/decimal.rs
Co-authored-by: Joe Isaacs <joe.isaacs@live.co.uk> Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent 8658ef1 commit dbfc61e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vortex-array/src/aggregate_fn/fns/sum/decimal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use crate::scalar::DecimalValue;
2020

2121
/// Accumulate a decimal array into the sum state.
2222
/// Returns Ok(true) if saturated (overflow), Ok(false) if not.
23-
#[allow(clippy::cognitive_complexity)]
23+
#[expect(clippy::cognitive_complexity)]
2424
pub(super) fn accumulate_decimal(inner: &mut SumState, d: &DecimalArray) -> VortexResult<bool> {
2525
let SumState::Decimal { value, dtype } = inner else {
2626
vortex_panic!("expected decimal sum state for decimal input");

0 commit comments

Comments
 (0)