dragosmg opened a new pull request #11355:
URL: https://github.com/apache/arrow/pull/11355
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
]
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]