Skip to content

Commit b6898db

Browse files
committed
cleanup
1 parent 490c99c commit b6898db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-expr/src/expressions/binary/kernels_arrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ mod tests {
625625
);
626626
let right_decimal_array =
627627
create_decimal_array(&[Some(10), Some(100), Some(55), Some(-123)], 25, 3);
628-
let result = divide_decimal_opt(&left_decimal_array, &right_decimal_array)?;
628+
let result = divide_opt_decimal(&left_decimal_array, &right_decimal_array)?;
629629
let expect = create_decimal_array(
630630
&[Some(123456700), None, Some(22446672), Some(-10037130)],
631631
25,

0 commit comments

Comments
 (0)