You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@arrow.apache.org by "jacques (JIRA)" <ji...@apache.org> on 2018/05/16 16:49:00 UTC

[jira] [Created] (ARROW-2591) [Python] Segmentationfault issue in pq.write_table

jacques created ARROW-2591:
------------------------------

             Summary: [Python] Segmentationfault issue in pq.write_table
                 Key: ARROW-2591
                 URL: https://issues.apache.org/jira/browse/ARROW-2591
             Project: Apache Arrow
          Issue Type: Bug
          Components: Python
    Affects Versions: 0.9.0, 0.8.0
            Reporter: jacques


When trying this simple code snipet I got a segmentation fault

 

{noformat}

In [1]: import pyarrow as pa

In [2]: import pyarrow.parquet as pq

In [3]: pa_ar = pa.array([[],[]],pa.list_(pa.int32()))

In [4]: table = pa.Table.from_arrays([pa_ar],["test"])

In [5]: pq.write_table(
   ...:     table=table,
   ...:     where="test.parquet",
   ...:     compression="snappy",
   ...:     flavor="spark"
   ...: )
Segmentation fault

{noformat}

May I have it fixed.

 

Best

Jacques



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