Uwe L. Korn created ARROW-1890: ---------------------------------- Summary: [Python] Masking for date32 arrays not working Key: ARROW-1890 URL: https://issues.apache.org/jira/browse/ARROW-1890 Project: Apache Arrow Issue Type: Bug Reporter: Uwe L. Korn
{{code}} arr = np.array([date(2017, 4, 3), date(2017, 4, 4)]) mask = [True, False] t32 = pa.date32() result = pa.array(arr, type=t32, mask=mask) {{code}} The above code produces an array that has no null values. -- This message was sent by Atlassian JIRA (v6.4.14#64029)