Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21482#discussion_r192547274
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -1107,6 +1107,14 @@ object functions {
        */
       def input_file_name(): Column = withExpr { InputFileName() }
     
    +  /**
    +   * Return true iff the column is Infinity.
    +   *
    +   * @group normal_funcs
    +   * @since 2.4.0
    +   */
    +  def isinf(e: Column): Column = withExpr { IsInf(e.expr) }
    --- End diff --
    
    Mind if I ask to elaborate  `isinf` vs `isInf` across the APIs?


---

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

Reply via email to