wesm commented on pull request #7113:
URL: https://github.com/apache/arrow/pull/7113#issuecomment-624697127
Hm, there was a test failure
```
____________ TestConvertMetadata.test_table_column_subset_metadata
_____________
self = <pyarrow.tests.test_pandas.TestConvertMetadata object at
0x7f759a900960>
def test_table_column_subset_metadata(self):
# ARROW-1883
# non-default index
for index in [
pd.Index(['a', 'b', 'c'], name='index'),
pd.date_range("2017-01-01", periods=3,
tz='Europe/Brussels')]:
df = pd.DataFrame({'a': [1, 2, 3],
'b': [.1, .2, .3]}, index=index)
table = pa.Table.from_pandas(df)
table_subset = table.remove_column(1)
result = table_subset.to_pandas()
> tm.assert_frame_equal(result, df[['a']])
E AssertionError: (None, <Day>)
opt/conda/envs/arrow/lib/python3.7/site-packages/pyarrow/tests/test_pandas.py:506:
AssertionError
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]