-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-8203] [SPARK-8204] [SQL] conditional function: least/greatest #6851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
ec625b0
c1f6824
7a6bdbb
0f1bff2
86fb049
22e8f3d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,8 @@ package org.apache.spark.sql.catalyst.expressions | |
| import org.apache.spark.sql.catalyst.InternalRow | ||
| import org.apache.spark.sql.catalyst.analysis.TypeCheckResult | ||
| import org.apache.spark.sql.catalyst.expressions.codegen._ | ||
| import org.apache.spark.sql.types.{BooleanType, DataType} | ||
| import org.apache.spark.sql.catalyst.util.TypeUtils | ||
| import org.apache.spark.sql.types.{NullType, BooleanType, DataType} | ||
|
|
||
|
|
||
| case class If(predicate: Expression, trueValue: Expression, falseValue: Expression) | ||
|
|
@@ -313,62 +314,102 @@ case class CaseKeyWhen(key: Expression, branches: Seq[Expression]) extends CaseW | |
| } | ||
| } | ||
|
|
||
| case class Least(children: Expression*) | ||
| extends Expression { | ||
| case class Least(children: Expression*) extends Expression { | ||
| require(children.length > 1, "LEAST requires at least 2 arguments, got " + children.length) | ||
|
|
||
| override def nullable: Boolean = children.forall(_.nullable) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shouldn't least be nullable if any is nullable?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hive 1.2.0 only return null when all arguments are null.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If any child is not nullable, the result will not be nullable. |
||
| override def foldable: Boolean = children.forall(_.foldable) | ||
|
|
||
| private lazy val ordering = TypeUtils.getOrdering(dataType) | ||
|
|
||
| override def checkInputDataTypes(): TypeCheckResult = { | ||
| if (children.map(_.dataType).distinct.size > 1) { | ||
| if (children.map(_.dataType).distinct.count(_ != NullType) > 1) { | ||
| TypeCheckResult.TypeCheckFailure( | ||
| s"differing types in Least (${children.map(_.dataType)}).") | ||
| s"The expressions should all have the same type," + | ||
| s" got LEAST (${children.map(_.dataType)}).") | ||
| } else { | ||
| TypeCheckResult.TypeCheckSuccess | ||
| TypeUtils.checkForOrderingExpr(dataType, "function " + prettyName) | ||
| } | ||
| } | ||
|
|
||
| override def dataType: DataType = children.head.dataType | ||
|
|
||
| override def eval(input: InternalRow): Any = { | ||
| val cmp = GreaterThan | ||
| children.foldLeft[Expression](null)((r, c) => { | ||
| if (c != null) { | ||
| if (r == null || cmp.apply(r, c).eval(input).asInstanceOf[Boolean]) c else r | ||
| children.foldLeft[Any](null)((r, c) => { | ||
| val evalc = c.eval(input) | ||
| if (evalc != null) { | ||
| if (r == null || ordering.lt(evalc, r)) evalc else r | ||
| } else { | ||
| r | ||
| } | ||
| }).eval(input) | ||
| }) | ||
| } | ||
|
|
||
| override def toString: String = s"LEAST(${children.mkString(", ")})" | ||
| override def genCode(ctx: CodeGenContext, ev: GeneratedExpressionCode): String = { | ||
| val evalChildren = children.map(_.gen(ctx)) | ||
| def updateEval(i: Int): String = | ||
| s""" | ||
| if (${ev.isNull} || (!${evalChildren(i).isNull} && ${ | ||
| ctx.genComp(dataType, evalChildren(i).primitive, ev.primitive)} < 0)) { | ||
| ${ev.isNull} = ${evalChildren(i).isNull}; | ||
| ${ev.primitive} = ${evalChildren(i).primitive}; | ||
| } | ||
| """ | ||
| s""" | ||
| ${evalChildren.map(_.code).mkString("\n")} | ||
| boolean ${ev.isNull} = true; | ||
| ${ctx.javaType(dataType)} ${ev.primitive} = ${ctx.defaultValue(dataType)}; | ||
| ${(0 to children.length - 1).map(updateEval).mkString("\n")} | ||
| """ | ||
| } | ||
| } | ||
|
|
||
| case class Greatest(children: Expression*) | ||
| extends Expression { | ||
| case class Greatest(children: Expression*) extends Expression { | ||
| require(children.length > 1, "GREATEST requires at least 2 arguments, got " + children.length) | ||
|
|
||
| override def nullable: Boolean = children.forall(_.nullable) | ||
| override def foldable: Boolean = children.forall(_.foldable) | ||
|
|
||
| private lazy val ordering = TypeUtils.getOrdering(dataType) | ||
|
|
||
| override def checkInputDataTypes(): TypeCheckResult = { | ||
| if (children.map(_.dataType).distinct.size > 1) { | ||
| if (children.map(_.dataType).distinct.count(_ != NullType) > 1) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why count against not
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think the problem is that null literals are not converted into any non-null type when it happens in greatest. |
||
| TypeCheckResult.TypeCheckFailure( | ||
| s"differing types in Greatest (${children.map(_.dataType)}).") | ||
| s"The expressions should all have the same type," + | ||
| s" got GREATEST (${children.map(_.dataType)}).") | ||
| } else { | ||
| TypeCheckResult.TypeCheckSuccess | ||
| TypeUtils.checkForOrderingExpr(dataType, "function " + prettyName) | ||
| } | ||
| } | ||
|
|
||
| override def dataType: DataType = children.head.dataType | ||
|
|
||
| override def eval(input: InternalRow): Any = { | ||
| val cmp = LessThan | ||
| children.foldLeft[Expression](null)((r, c) => { | ||
| if (c != null) { | ||
| if (r == null || cmp.apply(r, c).eval(input).asInstanceOf[Boolean]) c else r | ||
| children.foldLeft[Any](null)((r, c) => { | ||
| val evalc = c.eval(input) | ||
| if (evalc != null) { | ||
| if (r == null || ordering.gt(evalc, r)) evalc else r | ||
| } else { | ||
| r | ||
| } | ||
| }).eval(input) | ||
| }) | ||
| } | ||
|
|
||
| override def toString: String = s"LEAST(${children.mkString(", ")})" | ||
| override def genCode(ctx: CodeGenContext, ev: GeneratedExpressionCode): String = { | ||
| val evalChildren = children.map(_.gen(ctx)) | ||
| def updateEval(i: Int): String = | ||
| s""" | ||
| if (${ev.isNull} || (!${evalChildren(i).isNull} && ${ | ||
|
||
| ctx.genComp(dataType, evalChildren(i).primitive, ev.primitive)} > 0)) { | ||
| ${ev.isNull} = ${evalChildren(i).isNull}; | ||
|
||
| ${ev.primitive} = ${evalChildren(i).primitive}; | ||
| } | ||
| """ | ||
| s""" | ||
| ${evalChildren.map(_.code).mkString("\n")} | ||
| boolean ${ev.isNull} = true; | ||
| ${ctx.javaType(dataType)} ${ev.primitive} = ${ctx.defaultValue(dataType)}; | ||
| ${(0 to children.length - 1).map(updateEval).mkString("\n")} | ||
|
||
| """ | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: this should be Seq[Expression], not vararg