rok commented on issue #37192:
URL: https://github.com/apache/arrow/issues/37192#issuecomment-1681044835
Oh I see, I think this actually should work. Is this what you'd expect?
```python
import pyarrow as pa
import pyarrow.compute as pc
arr1 = pa.array([1], type=pa.duration("s"))
arr2 = pa.array([10000], type=pa.duration("ms"))
pc.divide(arr1, arr2)
<pyarrow.lib.DoubleArray object at ...>
[
0.1
]
```
--
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]