We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ce060b commit 0b26616Copy full SHA for 0b26616
native/spark-expr/src/agg_funcs/sum_int.rs
@@ -241,7 +241,7 @@ impl Accumulator for SumIntegerAccumulator {
241
Ok(v) => self.sum = v,
242
Err(e) =>
243
if (self.eval_mode == EvalMode::Ansi){
244
- return Err(DataFusionError::from(arithmetic_overflow_error("integer"))),
+ return Err(DataFusionError::from(arithmetic_overflow_error("integer")))
245
}
246
else{
247
self.sum = None.unwrap();
0 commit comments