jorisvandenbossche commented on code in PR #14238:
URL: https://github.com/apache/arrow/pull/14238#discussion_r980003470
##########
python/pyarrow/src/arrow_to_pandas.cc:
##########
@@ -155,7 +156,7 @@ struct WrapBytes<FixedSizeBinaryType> {
};
static inline bool ListTypeSupported(const DataType& type) {
- switch (type.id()) {
+ switch (type.storage_id()) {
Review Comment:
Instead of using storage_id here, I think you can add a `case
Type::EXTENSION` which then recursively calls ListTypeSupported again on the
storage type (similarly how it is done for list types)
--
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]