Github user SparkQA commented on the pull request:
https://github.com/apache/spark/pull/5616#issuecomment-94913331
[Test build #30688 has
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/30688/consoleFull)
for PR 5616 at commit
[`8e28fff`](https://github.com/apache/spark/commit/8e28fff0333e923c4f67bee26f5dd0a2fe444fed).
* This patch **fails Spark unit tests**.
* This patch merges cleanly.
* This patch adds the following public classes _(experimental)_:
* `abstract class BinaryFunctionExpression extends Expression with
trees.BinaryNode[Expression] `
* `trait MathematicalExpression extends UnaryExpression with Serializable
`
* `abstract class MathematicalExpressionForDouble(f: Double => Double)`
* `abstract class MathematicalExpressionForInt(f: Int => Int)`
* `abstract class MathematicalExpressionForFloat(f: Float => Float)`
* `abstract class MathematicalExpressionForLong(f: Long => Long)`
* `case class Sin(child: Expression) extends
MathematicalExpressionForDouble(math.sin) `
* `case class Asin(child: Expression) extends
MathematicalExpressionForDouble(math.asin) `
* `case class Sinh(child: Expression) extends
MathematicalExpressionForDouble(math.sinh) `
* `case class Cos(child: Expression) extends
MathematicalExpressionForDouble(math.cos) `
* `case class Acos(child: Expression) extends
MathematicalExpressionForDouble(math.acos) `
* `case class Cosh(child: Expression) extends
MathematicalExpressionForDouble(math.cosh) `
* `case class Tan(child: Expression) extends
MathematicalExpressionForDouble(math.tan) `
* `case class Atan(child: Expression) extends
MathematicalExpressionForDouble(math.atan) `
* `case class Tanh(child: Expression) extends
MathematicalExpressionForDouble(math.tanh) `
* `case class Ceil(child: Expression) extends
MathematicalExpressionForDouble(math.ceil) `
* `case class Floor(child: Expression) extends
MathematicalExpressionForDouble(math.floor) `
* `case class Rint(child: Expression) extends
MathematicalExpressionForDouble(math.rint) `
* `case class Cbrt(child: Expression) extends
MathematicalExpressionForDouble(math.cbrt) `
* `case class Signum(child: Expression) extends
MathematicalExpressionForDouble(math.signum) `
* `case class ISignum(child: Expression) extends
MathematicalExpressionForInt(math.signum) `
* `case class FSignum(child: Expression) extends
MathematicalExpressionForFloat(math.signum) `
* `case class LSignum(child: Expression) extends
MathematicalExpressionForLong(math.signum) `
* `case class ToDegrees(child: Expression) extends
MathematicalExpressionForDouble(math.toDegrees) `
* `case class ToRadians(child: Expression) extends
MathematicalExpressionForDouble(math.toRadians) `
* `case class Log(child: Expression) extends
MathematicalExpressionForDouble(math.log) `
* `case class Log10(child: Expression) extends
MathematicalExpressionForDouble(math.log10) `
* `case class Log1p(child: Expression) extends
MathematicalExpressionForDouble(math.log1p) `
* `case class Exp(child: Expression) extends
MathematicalExpressionForDouble(math.exp) `
* `case class Expm1(child: Expression) extends
MathematicalExpressionForDouble(math.expm1) `
* `abstract class BinaryMathExpression(f: (Double, Double) => Double) `
* `case class Pow(left: Expression, right: Expression) extends
BinaryMathExpression(math.pow) `
* `case class Hypot(left: Expression, right: Expression) extends
BinaryMathExpression(math.hypot) `
* `case class Atan2(left: Expression, right: Expression) extends
BinaryMathExpression(math.atan2) `
* This patch does not change any dependencies.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]