Commits


Dragos Moldovan-Grünfeld authored and Neal Richardson committed 63b8b7eb226
ARROW-13800 [R] Use divide instead of divide_checked mapping `divide` for `/` has the intended consequences, however integer division (`%/%`) doesn't work. ``` a <- Array$create(c(1:4, NA_integer_)) # results in integer overflow irrespective of %/% being mapped to divide or divide_checked a %/% 0 Array <int32> [ 2147483647, 2147483647, 2147483647, 2147483647, null ] ``` Closes #11355 from dragosmg/ARROW-13800_use_divide_instead_of_divide_checked Lead-authored-by: Dragos Moldovan-Grünfeld <dragos.mold@gmail.com> Co-authored-by: Dragoș Moldovan-Grünfeld <dragos.mold@gmail.com> Signed-off-by: Neal Richardson <neal.p.richardson@gmail.com>