GUAN Hao created ARROW-1469: ------------------------------- Summary: Segfault when serialize Pandas series with mixed object type Key: ARROW-1469 URL: https://issues.apache.org/jira/browse/ARROW-1469 Project: Apache Arrow Issue Type: Bug Components: Python Affects Versions: 0.6.0 Reporter: GUAN Hao
The following code causes segfault {code} import pandas as pd import pyarrow as pa s = pd.Series([1, '-']) pa.Array.from_pandas(s) {code} Arrow vector cannot hold mixed types, and raising an exception here instead of segfault is much better IMHO. -- This message was sent by Atlassian JIRA (v6.4.14#64029)