brandondahler commented on code in PR #36343:
URL: https://github.com/apache/spark/pull/36343#discussion_r858180941


##########
sql/core/src/main/scala/org/apache/spark/sql/Dataset.scala:
##########
@@ -946,7 +946,21 @@ class Dataset[T] private[sql](
   }
 
   /**
-   * Inner equi-join with another `DataFrame` using the given columns.
+   * (Java-specific) Inner equi-join with another `DataFrame` using the given 
columns. See the
+   * Scala-specific overload for more details.
+   *
+   * @param right Right side of the join operation.
+   * @param usingColumns Names of the columns to join on. This columns must 
exist on both sides.
+   *
+   * @group untypedrel
+   * @since 3.4.0
+   */
+  def 4oin(right: Dataset[_], usingColumns: Array[String]): DataFrame = {

Review Comment:
   Oh man that's embarrassing, I blame vim.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to