You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by db...@apache.org on 2017/04/11 04:04:51 UTC

spark git commit: [MINOR][SQL] Fix the @since tag when backporting SPARK-18555 from 2.2 branch into 2.0 branch

Repository: spark
Updated Branches:
  refs/heads/branch-2.0 aec37529f -> 123a758ce


[MINOR][SQL] Fix the @since tag when backporting SPARK-18555 from 2.2 branch into 2.0 branch

## What changes were proposed in this pull request?

Fix the since tag when backporting critical bugs (SPARK-18555) from 2.2 branch into 2.0 branch.

## How was this patch tested?

N/A

Please review http://spark.apache.org/contributing.html before opening a pull request.

Author: DB Tsai <db...@dbtsai.com>

Closes #17601 from dbtsai/branch-2.0.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/123a758c
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/123a758c
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/123a758c

Branch: refs/heads/branch-2.0
Commit: 123a758ce45218b23b7de6517c060d1a0575ed66
Parents: aec3752
Author: DB Tsai <db...@dbtsai.com>
Authored: Tue Apr 11 04:04:18 2017 +0000
Committer: DB Tsai <db...@dbtsai.com>
Committed: Tue Apr 11 04:04:18 2017 +0000

----------------------------------------------------------------------
 .../main/scala/org/apache/spark/sql/DataFrameNaFunctions.scala | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/123a758c/sql/core/src/main/scala/org/apache/spark/sql/DataFrameNaFunctions.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/DataFrameNaFunctions.scala b/sql/core/src/main/scala/org/apache/spark/sql/DataFrameNaFunctions.scala
index d97fd72..f37dece 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/DataFrameNaFunctions.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/DataFrameNaFunctions.scala
@@ -129,7 +129,7 @@ final class DataFrameNaFunctions private[sql](df: DataFrame) {
   /**
    * Returns a new [[DataFrame]] that replaces null or NaN values in numeric columns with `value`.
    *
-   * @since 2.2.0
+   * @since 2.0.3
    */
   def fill(value: Long): DataFrame = fill(value, df.columns)
 
@@ -150,7 +150,7 @@ final class DataFrameNaFunctions private[sql](df: DataFrame) {
    * Returns a new [[DataFrame]] that replaces null or NaN values in specified numeric columns.
    * If a specified column is not a numeric column, it is ignored.
    *
-   * @since 2.2.0
+   * @since 2.0.3
    */
   def fill(value: Long, cols: Array[String]): DataFrame = fill(value, cols.toSeq)
 
@@ -166,7 +166,7 @@ final class DataFrameNaFunctions private[sql](df: DataFrame) {
    * (Scala-specific) Returns a new [[DataFrame]] that replaces null or NaN values in specified
    * numeric columns. If a specified column is not a numeric column, it is ignored.
    *
-   * @since 2.2.0
+   * @since 2.0.3
    */
   def fill(value: Long, cols: Seq[String]): DataFrame = fillValue(value, cols)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org