Repository: spark
Updated Branches:
  refs/heads/master a95a4af76 -> e1d3f8010


[SPARK-24408][SQL][DOC] Move abs function to math_funcs group

## What changes were proposed in this pull request?

A few math functions (`abs` , `bitwiseNOT`, `isnan`, `nanvl`) are not in 
**math_funcs** group. They should really be.

## How was this patch tested?

Awaiting Jenkins

Author: Jacek Laskowski <ja...@japila.pl>

Closes #21448 from jaceklaskowski/SPARK-24408-math-funcs-doc.


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

Branch: refs/heads/master
Commit: e1d3f80103f6df2eb8a962607dd5427df4b355dd
Parents: a95a4af
Author: Jacek Laskowski <ja...@japila.pl>
Authored: Thu Jun 28 13:22:52 2018 -0700
Committer: Holden Karau <hol...@pigscanfly.ca>
Committed: Thu Jun 28 13:22:52 2018 -0700

----------------------------------------------------------------------
 .../scala/org/apache/spark/sql/functions.scala    | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/e1d3f801/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/functions.scala 
b/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
index 0b4f526..acca957 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
@@ -1032,14 +1032,6 @@ object functions {
   
//////////////////////////////////////////////////////////////////////////////////////////////
 
   /**
-   * Computes the absolute value.
-   *
-   * @group normal_funcs
-   * @since 1.3.0
-   */
-  def abs(e: Column): Column = withExpr { Abs(e.expr) }
-
-  /**
    * Creates a new array column. The input columns must all have the same data 
type.
    *
    * @group normal_funcs
@@ -1336,7 +1328,7 @@ object functions {
   }
 
   /**
-   * Computes bitwise NOT.
+   * Computes bitwise NOT (~) of a number.
    *
    * @group normal_funcs
    * @since 1.4.0
@@ -1365,6 +1357,14 @@ object functions {
   
//////////////////////////////////////////////////////////////////////////////////////////////
 
   /**
+   * Computes the absolute value of a numeric value.
+   *
+   * @group math_funcs
+   * @since 1.3.0
+   */
+  def abs(e: Column): Column = withExpr { Abs(e.expr) }
+
+  /**
    * @return inverse cosine of `e` in radians, as if computed by 
`java.lang.Math.acos`
    *
    * @group math_funcs


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

Reply via email to