You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/30 08:42:02 UTC

[GitHub] [arrow] kou commented on pull request #13239: ARROW-16668: [CI] Add Substrait support to python wheels

kou commented on PR #13239:
URL: https://github.com/apache/arrow/pull/13239#issuecomment-1140874192

   @raulcd This broke our doctest. Could you confirm this?
   
   https://github.com/apache/arrow/runs/6615749316?check_suite_focus=true#step:6:5590
   
   ```text
   _______________________ [doctest] pyarrow.lib.Table.join _______________________
   4663         ...                     'year': [2020, 2022, 2019]})
   4664         >>> df2 = pd.DataFrame({'id': [3, 4],
   4665         ...                     'n_legs': [5, 100],
   4666         ...                     'animal': ["Brittle stars", "Centipede"]})
   4667         >>> t1 = pa.Table.from_pandas(df1)
   4668         >>> t2 = pa.Table.from_pandas(df2)
   4669 
   4670         Left outer join:
   4671 
   4672         >>> t1.join(t2, 'id')
   Differences (unified diff with -expected +actual):
       @@ -2,9 +2,9 @@
        id: int64
        year: int64
       +animal: string
        n_legs: int64
       -animal: string
        ----
        id: [[3,1,2]]
        year: [[2019,2020,2022]]
       +animal: [["Brittle stars",null,null]]
        n_legs: [[5,null,null]]
       -animal: [["Brittle stars",null,null]]
   ```


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org