Skip to content

Commit

Permalink
doc(python): Explicit note section for coalescing note
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Nov 20, 2024
1 parent 5f61d70 commit 9ea0b9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -7061,8 +7061,9 @@ def join(
- True: -> Always coalesce join columns.
- False: -> Never coalesce join columns.
Note that joining on any other expressions than `col`
will turn off coalescing.
.. note::
Joining on any other expressions than `col`
will turn off coalescing.
See Also
--------
Expand Down
5 changes: 3 additions & 2 deletions py-polars/polars/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4450,8 +4450,9 @@ def join(
- True: -> Always coalesce join columns.
- False: -> Never coalesce join columns.
Note that joining on any other expressions than `col`
will turn off coalescing.
.. note::
Joining on any other expressions than `col`
will turn off coalescing.
allow_parallel
Allow the physical plan to optionally evaluate the computation of both
DataFrames up to the join in parallel.
Expand Down

0 comments on commit 9ea0b9a

Please sign in to comment.