We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08a29c0 commit 5eb6465Copy full SHA for 5eb6465
connector/connect/client/jvm/src/main/scala/org/apache/spark/sql/Dataset.scala
@@ -2752,7 +2752,7 @@ class Dataset[T] private[sql] (
2752
* @group untypedrel
2753
* @since 3.5.0
2754
*/
2755
- @deprecated("use flatMap() or select() with functions.explode() instead", "2.0.0")
+ @deprecated("use flatMap() or select() with functions.explode() instead", "3.5.0")
2756
def explode[A <: Product: TypeTag](input: Column*)(f: Row => TraversableOnce[A]): DataFrame = {
2757
select(input: _*).flatMap(f)(Encoders.product[A]).toDF()
2758
}
0 commit comments