SparkQA commented on issue #23304: [SPARK-26353][SQL]Add typed aggregate 
functions: max&&min
URL: https://github.com/apache/spark/pull/23304#issuecomment-447305158
 
 
   **[Test build #100139 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/100139/testReport)**
 for PR 23304 at commit 
[`0b64ae7`](https://github.com/apache/spark/commit/0b64ae7714023590ebe71cd67ffc0b63e8c387fe).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds the following public classes _(experimental)_:
     * `trait TypedMinDouble[IN, OUT] extends Aggregator[IN, MutableDouble, 
OUT] `
     * `class JavaTypedMinDouble[IN](override val f: IN => Double)`
     * `class ScalaTypedMinDouble[IN](override val f: IN => Double)`
     * `trait TypedMaxDouble[IN, OUT] extends Aggregator[IN, MutableDouble, 
OUT] `
     * `class JavaTypedMaxDouble[IN](override val f: IN => Double)`
     * `class ScalaTypedMaxDouble[IN](override val f: IN => Double)`
     * `trait TypedMinLong[IN, OUT] extends Aggregator[IN, MutableLong, OUT] `
     * `class JavaTypedMinLong[IN](override val f: IN => Long) extends 
TypedMinLong[IN, java.lang.Long] `
     * `class ScalaTypedMinLong[IN](override val f: IN => Long) extends 
TypedMinLong[IN, Option[Long]] `
     * `trait TypedMaxLong[IN, OUT] extends Aggregator[IN, MutableLong, OUT] `
     * `class JavaTypedMaxLong[IN](override val f: IN => Long) extends 
TypedMaxLong[IN, java.lang.Long] `
     * `class ScalaTypedMaxLong[IN](override val f: IN => Long) extends 
TypedMaxLong[IN, Option[Long]] `
     * `class MutableLong(var value: Long) extends Serializable`
     * `class MutableDouble(var value: Double) extends Serializable`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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

Reply via email to