felipecrv opened a new issue, #41353:
URL: https://github.com/apache/arrow/issues/41353
### Describe the enhancement requested
`ExtensionType` should implement `bit_width` and `byte_width` by delegating
the call to the storage type.
```cpp
int32_t byte_width() const override { return storage_type_->byte_width(); }
int bit_width() const override { return storage_type_->bit_width(); }
```
### Component(s)
C++
--
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]