tadeja opened a new pull request, #48746:
URL: https://github.com/apache/arrow/pull/48746
### Rationale for this change
Request #48470
### What changes are included in this PR?
An extension scalar is unwrapped to its storage type when building arrays.
### Are these changes tested?
Adding tests soon.
### Are there any user-facing changes?
Now user can run such an example to get the output below instead of
`ArrowInvalid` message.
```python
import pyarrow as pa
pa.array([pa.scalar(b'1'*16, type=pa.uuid())], type=pa.uuid())
```
<pyarrow.lib.UuidArray object at 0x128186970>
[
31313131313131313131313131313131
]
--
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]