Skip to content

Commit 5eb6465

Browse files
Update connector/connect/client/jvm/src/main/scala/org/apache/spark/sql/Dataset.scala
Co-authored-by: Hyukjin Kwon <[email protected]>
1 parent 08a29c0 commit 5eb6465

File tree

1 file changed

+1
-1
lines changed
  • connector/connect/client/jvm/src/main/scala/org/apache/spark/sql

1 file changed

+1
-1
lines changed

connector/connect/client/jvm/src/main/scala/org/apache/spark/sql/Dataset.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -2752,7 +2752,7 @@ class Dataset[T] private[sql] (
27522752
* @group untypedrel
27532753
* @since 3.5.0
27542754
*/
2755-
@deprecated("use flatMap() or select() with functions.explode() instead", "2.0.0")
2755+
@deprecated("use flatMap() or select() with functions.explode() instead", "3.5.0")
27562756
def explode[A <: Product: TypeTag](input: Column*)(f: Row => TraversableOnce[A]): DataFrame = {
27572757
select(input: _*).flatMap(f)(Encoders.product[A]).toDF()
27582758
}

0 commit comments

Comments
 (0)