You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Wes McKinney (JIRA)" <ji...@apache.org> on 2019/06/25 01:15:00 UTC

[jira] [Updated] (ARROW-4432) [Python][Hypothesis] Empty table - pandas roundtrip produces inequal tables

     [ https://issues.apache.org/jira/browse/ARROW-4432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Wes McKinney updated ARROW-4432:
--------------------------------
    Fix Version/s:     (was: 0.14.0)
                   1.0.0

> [Python][Hypothesis] Empty table - pandas roundtrip produces inequal tables
> ---------------------------------------------------------------------------
>
>                 Key: ARROW-4432
>                 URL: https://issues.apache.org/jira/browse/ARROW-4432
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Python
>            Reporter: Krisztian Szucs
>            Priority: Major
>              Labels: hypothesis
>             Fix For: 1.0.0
>
>
> The following test case fails for empty tables:
> {code:python}
> import hypothesis as h
> import pyarrow.tests.strategies as past
> @h.given(past.all_tables)
> def test_pandas_roundtrip(table):
>     df = table.to_pandas()
>     table_ = pa.Table.from_pandas(df)
>     assert table == table_
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)