Skip to content

Commit ab30322

Browse files
committed
fix(docs): join usage
1 parent 9f5fa20 commit ab30322

File tree

1 file changed

+3
-3
lines changed
  • docs/source/user-guide/common-operations

1 file changed

+3
-3
lines changed

docs/source/user-guide/common-operations/joins.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ Duplicate Keys
107107
--------------
108108

109109
It is common to join two DataFrames on a common column name. Starting in
110-
version 51.0.0, ``datafusion-python``` will now drop duplicate column names by
110+
version 51.0.0, ``datafusion-python``` will now coalesce on column with identical names by
111111
default. This reduces problems with ambiguous column selection after joins.
112-
You can disable this feature by setting the parameter ``drop_duplicate_keys``
112+
You can disable this feature by setting the parameter ``coalesce_duplicate_keys``
113113
to ``False``.
114114

115115
.. ipython:: python
@@ -133,4 +133,4 @@ In contrast to the above example, if we wish to get both columns:
133133

134134
.. ipython:: python
135135
136-
left.join(right, "id", how="inner", drop_duplicate_keys=False)
136+
left.join(right, "id", how="inner", coalesce_duplicate_keys=False)

0 commit comments

Comments
 (0)