You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@arrow.apache.org by "Licht Takeuchi (JIRA)" <ji...@apache.org> on 2017/10/23 14:34:00 UTC

[jira] [Created] (ARROW-1713) [Python] Incorrect serialization pd.Series.index

Licht Takeuchi created ARROW-1713:
-------------------------------------

             Summary: [Python] Incorrect serialization pd.Series.index
                 Key: ARROW-1713
                 URL: https://issues.apache.org/jira/browse/ARROW-1713
             Project: Apache Arrow
          Issue Type: Bug
          Components: Python
    Affects Versions: 0.7.1
            Reporter: Licht Takeuchi
            Assignee: Licht Takeuchi


Repro code.

{code:java}
import pandas as pd
import pyarrow as pa

s = pd.Series([1,2,3,4])
s.index = pd.RangeIndex(start=0, stop=8, step=2)

serialized = pa.serialize(s).to_buffer()
pa.deserialize(serialized)
{code}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)