randolf-scholz opened a new issue, #36128:
URL: https://github.com/apache/arrow/issues/36128
### Describe the enhancement requested
```python
import pyarrow as pa
arr = pa.array([1,2,3], type=pa.duration("s"))
mul = pa.array([1,2,3], type=pa.int32())
pa.compute.multiply(arr, [1,2,3]) # ✔ works
pa.compute.multiply(arr, mul) # ✘ ArrowNotImplementedError: Function
'multiply' has no kernel matching input types (duration[s], int32)
```
### Component(s)
Python
--
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]