markweissman opened a new issue, #13408:
URL: https://github.com/apache/arrow/issues/13408

   pyarrow.Table.join handles nulls differently than pandas.  Please consider 
either changing or documenting this.
   
   (Pdb) df=pa.Table.from_pandas(pd.DataFrame(dict(x=[None, "foo"]))); 
df.join(df, "x", join_type="inner").to_pandas()
        x
   0  foo
   (Pdb) df=pd.DataFrame(dict(x=[None, "foo"])); df.merge(df, on="x", 
how="inner")
         x
   0  None
   1   foo
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to