Skip to content

Commit 0b26616

Browse files
committed
impl_try_mode
1 parent 2ce060b commit 0b26616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

native/spark-expr/src/agg_funcs/sum_int.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ impl Accumulator for SumIntegerAccumulator {
241241
Ok(v) => self.sum = v,
242242
Err(e) =>
243243
if (self.eval_mode == EvalMode::Ansi){
244-
return Err(DataFusionError::from(arithmetic_overflow_error("integer"))),
244+
return Err(DataFusionError::from(arithmetic_overflow_error("integer")))
245245
}
246246
else{
247247
self.sum = None.unwrap();

0 commit comments

Comments
 (0)