You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by rxin <gi...@git.apache.org> on 2018/05/14 05:18:27 UTC

[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

GitHub user rxin opened a pull request:

    https://github.com/apache/spark/pull/21318

    [minor] Update docs for functions.scala to make it clear not all the built-in functions are defined there

    The title summarizes the change.


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/rxin/spark functions

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/21318.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #21318
    
----
commit 83c191fbbe82bf49c81a860f4f1ebde7a4076f00
Author: Reynold Xin <rx...@...>
Date:   2018-05-14T05:15:56Z

    [minor] Update docs for functions.scala

----


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    **[Test build #90567 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/90567/testReport)** for PR 21318 at commit [`83c191f`](https://github.com/apache/spark/commit/83c191fbbe82bf49c81a860f4f1ebde7a4076f00).


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21318#discussion_r187843283
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -39,7 +39,21 @@ import org.apache.spark.util.Utils
     
     
     /**
    - * Functions available for DataFrame operations.
    + * Commonly used functions available for DataFrame operations. Using functions defined here provides
    --- End diff --
    
    Maybe I am too much caring about this but I hope we don't have arguments too much if it's common or not ...  


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21318#discussion_r187843125
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -39,7 +39,21 @@ import org.apache.spark.util.Utils
     
     
     /**
    - * Functions available for DataFrame operations.
    + * Commonly used functions available for DataFrame operations. Using functions defined here provides
    + * a little bit more compile-time safety to make sure the function exists.
    + *
    + * Spark also includes more built-in functions that are less common and are not defined here.
    + * You can still access them (and all the functions defined here) using the [[functions.expr()]] API
    + * and calling them through a SQL expression string. You can find the entire list of functions for
    + * the latest version of Spark at [[https://spark.apache.org/docs/latest/api/sql/index.html]].
    --- End diff --
    
    @rxin, it's rather a nit but shouldn't we always update the link for each release since it always points the latest?


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    @rxin re: https://github.com/apache/spark/pull/21318#discussion_r205888882 I meant to say for instance, like "Please refer the SQL function documentation in the corresponding version". We don't have to bother update and also it makes sense ..


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21318#discussion_r187842050
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -39,7 +39,21 @@ import org.apache.spark.util.Utils
     
     
     /**
    - * Functions available for DataFrame operations.
    + * Commonly used functions available for DataFrame operations. Using functions defined here provides
    + * a little bit more compile-time safety to make sure the function exists.
    + *
    + * Spark also includes more built-in functions that are less common and are not defined here.
    + * You can still access them (and all the functions defined here) using the [[functions.expr()]] API
    --- End diff --
    
    ```
    [error] /home/jenkins/workspace/SparkPullRequestBuilder/sql/core/target/java/org/apache/spark/sql/functions.java:7: error: unexpected text
    [error]  * You can still access them (and all the functions defined here) using the {@link functions.expr()} API
    [error]                                                                             ^
    [error] /home/jenkins/workspace/SparkPullRequestBuilder/sql/core/target/java/org/apache/spark/sql/functions.java:9: error: unexpected text
    [error]  * the latest version of Spark at {@link https://spark.apache.org/docs/latest/api/sql/index.html}.
    [error]                                   ^
    ```
    
    Seems both links are the problem in Javadoc. Shall we just use `` `functions.expr() `  `` and leave the `https://spark.apache.org/docs/latest/api/sql/index.html` like without `[[...]]`?


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    @rxin, should we maybe we mention that SQL functions are usually added to match other DBMSs (unlike functions.scala)?


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/90567/
    Test FAILed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/90625/
    Test FAILed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93695/
    Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Just browsing old PRs .. want to finish this one up @rxin? looks simple and useful.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    **[Test build #90625 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/90625/testReport)** for PR 21318 at commit [`83c191f`](https://github.com/apache/spark/commit/83c191fbbe82bf49c81a860f4f1ebde7a4076f00).


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Thanks! Merged to master.


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by mgaido91 <gi...@git.apache.org>.
Github user mgaido91 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21318#discussion_r187857692
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -39,7 +39,21 @@ import org.apache.spark.util.Utils
     
     
     /**
    - * Functions available for DataFrame operations.
    + * Commonly used functions available for DataFrame operations. Using functions defined here provides
    + * a little bit more compile-time safety to make sure the function exists.
    + *
    + * Spark also includes more built-in functions that are less common and are not defined here.
    + * You can still access them (and all the functions defined here) using the [[functions.expr()]] API
    + * and calling them through a SQL expression string. You can find the entire list of functions for
    + * the latest version of Spark at [[https://spark.apache.org/docs/latest/api/sql/index.html]].
    + *
    + * As an example, `isnan` is a function that is defined here. You can use `isnan(col("myCol"))`
    + * to invoke the isnan function. This way the programming language's compiler ensures isnan exists
    + * and is of the proper form. You can also use `expr("isnan(myCol)")` function to invoke the same
    + * function. In this case, Spark itself will ensure isnan exists when it analyzes the query.
    --- End diff --
    
    nit: `isnan`


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Hm the failure doesn't look like it's caused by this PR. Do you guys know what's going on?



---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    retest this please


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/1426/
    Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/21318


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    **[Test build #93695 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93695/testReport)** for PR 21318 at commit [`db44914`](https://github.com/apache/spark/commit/db449140fd38ce7bfdf6bb699f15443ad3e50ab3).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    LGTM.
    
    On Fri, Jul 27, 2018 at 10:58 PM Hyukjin Kwon <no...@github.com>
    wrote:
    
    > @rxin <https://github.com/rxin> re: #21318 (comment)
    > <https://github.com/apache/spark/pull/21318#discussion_r205888882> I
    > meant to say for instance, like "Please refer the SQL function
    > documentation in the corresponding version". We don't have to bother update
    > and also it makes sense ..
    >
    > —
    > You are receiving this because you were mentioned.
    > Reply to this email directly, view it on GitHub
    > <https://github.com/apache/spark/pull/21318#issuecomment-408585310>, or mute
    > the thread
    > <https://github.com/notifications/unsubscribe-auth/AATvPO0G9cnPbJEyopz69kHMROglqL_Iks5uK_2TgaJpZM4T9LE->
    > .
    >



---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    **[Test build #93695 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93695/testReport)** for PR 21318 at commit [`db44914`](https://github.com/apache/spark/commit/db449140fd38ce7bfdf6bb699f15443ad3e50ab3).


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21318#discussion_r205888882
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -39,7 +39,21 @@ import org.apache.spark.util.Utils
     
     
     /**
    - * Functions available for DataFrame operations.
    + * Commonly used functions available for DataFrame operations. Using functions defined here provides
    + * a little bit more compile-time safety to make sure the function exists.
    + *
    + * Spark also includes more built-in functions that are less common and are not defined here.
    + * You can still access them (and all the functions defined here) using the [[functions.expr()]] API
    + * and calling them through a SQL expression string. You can find the entire list of functions for
    + * the latest version of Spark at [[https://spark.apache.org/docs/latest/api/sql/index.html]].
    --- End diff --
    
    it's just a lot of work and i'm sure we will forget to update ... so i'm pointing to the latest.



---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution/3221/
    Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    It's still going to fail because I haven't updated it yet. Will do tomorrow.



---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Yup will do.
    
    
    On Fri, Jul 27, 2018 at 10:23 AM Sean Owen <no...@github.com> wrote:
    
    > Just browsing old PRs .. want to finish this one up @rxin
    > <https://github.com/rxin>? looks simple and useful.
    >
    > —
    > You are receiving this because you were mentioned.
    > Reply to this email directly, view it on GitHub
    > <https://github.com/apache/spark/pull/21318#issuecomment-408484731>, or mute
    > the thread
    > <https://github.com/notifications/unsubscribe-auth/AATvPEOWETw8YHHvABHQ7-oTiWlsBnGtks5uK0yagaJpZM4T9LE->
    > .
    >



---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    cc @gatorsmile @HyukjinKwon 


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution/3187/
    Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    **[Test build #90625 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/90625/testReport)** for PR 21318 at commit [`83c191f`](https://github.com/apache/spark/commit/83c191fbbe82bf49c81a860f4f1ebde7a4076f00).
     * This patch **fails to generate documentation**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    Merged build finished. Test PASSed.


---

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


[GitHub] spark issue #21318: [minor] Update docs for functions.scala to make it clear...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/21318
  
    **[Test build #90567 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/90567/testReport)** for PR 21318 at commit [`83c191f`](https://github.com/apache/spark/commit/83c191fbbe82bf49c81a860f4f1ebde7a4076f00).
     * This patch **fails to generate documentation**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark pull request #21318: [minor] Update docs for functions.scala to make i...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21318#discussion_r187843889
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -39,7 +39,21 @@ import org.apache.spark.util.Utils
     
     
     /**
    - * Functions available for DataFrame operations.
    + * Commonly used functions available for DataFrame operations. Using functions defined here provides
    + * a little bit more compile-time safety to make sure the function exists.
    + *
    + * Spark also includes more built-in functions that are less common and are not defined here.
    + * You can still access them (and all the functions defined here) using the [[functions.expr()]] API
    + * and calling them through a SQL expression string. You can find the entire list of functions for
    + * the latest version of Spark at [[https://spark.apache.org/docs/latest/api/sql/index.html]].
    + *
    + * As an example, `isnan` is a function that is defined here. You can use `isnan(col("myCol"))`
    + * to invoke the isnan function. This way the programming language's compiler ensures isnan exists
    --- End diff --
    
    nit: `isnan` -> `` `isnan` ``


---

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