File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/source/user-guide/common-operations Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ Duplicate Keys
107107--------------
108108
109109It 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
111111default. 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 ``
113113to ``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 )
You can’t perform that action at this time.
0 commit comments