@@ -750,14 +750,17 @@ class Dataset[T] private[sql](
750750 }
751751
752752 /**
753- * Equi-join with another `DataFrame` using the given columns.
753+ * Equi-join with another `DataFrame` using the given columns. A cross join with a predicate
754+ * is specified as an inner join. If you would explicitly like to perform a cross join use the
755+ * `crossJoin` method.
754756 *
755757 * Different from other join functions, the join columns will only appear once in the output,
756758 * i.e. similar to SQL's `JOIN USING` syntax.
757759 *
758760 * @param right Right side of the join operation.
759761 * @param usingColumns Names of the columns to join on. This columns must exist on both sides.
760- * @param joinType One of: `inner`, `outer`, `left_outer`, `right_outer`, `leftsemi`.
762+ * @param joinType One of: `inner`, `cross`, `outer`, `full`, `full_outer`,
763+ * `left`, `left_outer`, `right`, `right_outer`, `left_semi`, `left_anti`.
761764 *
762765 * @note If you perform a self-join using this function without aliasing the input
763766 * `DataFrame`s, you will NOT be able to reference any columns after the join, since
@@ -812,7 +815,8 @@ class Dataset[T] private[sql](
812815 *
813816 * @param right Right side of the join.
814817 * @param joinExprs Join expression.
815- * @param joinType One of: `inner`, `outer`, `left_outer`, `right_outer`, `leftsemi`.
818+ * @param joinType One of: `inner`, `cross`, `outer`, `full`, `full_outer`,
819+ * `left`, `left_outer`, `right`, `right_outer`, `left_semi`, `left_anti`.
816820 *
817821 * @group untypedrel
818822 * @since 2.0.0
@@ -889,7 +893,8 @@ class Dataset[T] private[sql](
889893 *
890894 * @param other Right side of the join.
891895 * @param condition Join expression.
892- * @param joinType One of: `inner`, `outer`, `left_outer`, `right_outer`, `leftsemi`.
896+ * @param joinType One of: `inner`, `cross`, `outer`, `full`, `full_outer`,
897+ * `left`, `left_outer`, `right`, `right_outer`, `left_semi`, `left_anti`.
893898 *
894899 * @group typedrel
895900 * @since 1.6.0
0 commit comments