srowen commented on code in PR #36343: URL: https://github.com/apache/spark/pull/36343#discussion_r858018794
########## 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.3.0 Review Comment: (Make it 3.4.0 now) -- 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]
