You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "jorisvandenbossche (via GitHub)" <gi...@apache.org> on 2023/04/20 10:45:24 UTC

[GitHub] [arrow] jorisvandenbossche commented on a diff in pull request #35248: GH-35235: [CI][Python] Pandas upstream_devel and nightlies are failing

jorisvandenbossche commented on code in PR #35248:
URL: https://github.com/apache/arrow/pull/35248#discussion_r1172412311


##########
python/pyarrow/table.pxi:
##########
@@ -467,7 +467,7 @@ cdef class ChunkedArray(_PandasConvertible):
         # pandas ExtensionDtype that implements conversion from pyarrow
         if hasattr(pandas_dtype, '__from_arrow__'):
             arr = pandas_dtype.__from_arrow__(self)
-            return pandas_api.series(arr)
+            return pandas_api.series(arr, name=self._name)

Review Comment:
   Doesn't need to be done in this PR if we want to get this merged quickly for unblocking a release, but I think it would be good to add an explicit test for this (one that doesn't rely on some unrelated (and pandas-version dependent) test)



-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org