viirya commented on a change in pull request #25717: [WIP][SPARK-29013][SQL]
Structurally equivalent subexpression elimination
URL: https://github.com/apache/spark/pull/25717#discussion_r322017275
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/EquivalentExpressions.scala
##########
@@ -65,35 +89,102 @@ class EquivalentExpressions {
}
/**
- * Adds the expression to this data structure recursively. Stops if a
matching expression
- * is found. That is, if `expr` has already been added, its children are not
added.
+ * Adds each expression to structural expression data structure, grouping
them with existing
+ * structurally equivalent expressions. Non-recursive.
+ */
+ def addStructExpr(ctx: CodegenContext, expr: Expression): Unit = {
+ if (expr.deterministic) {
+ val refs = expr.collect {
+ case b: BoundReference => b
+ }
+
+ // For structural equivalent expressions, we need to pass in int type
ordinals into
+ // split functions. If the number of ordinals is more than JVM function
limit, we skip
+ // this expression.
+ // We calculate function parameter length by the number of ints plus
`INPUT_ROW` plus
+ // a int type result array index.
+ val parameterLength = CodeGenerator.calculateParamLength(refs.map(_ =>
Literal(0))) + 2
+ if (CodeGenerator.isValidParamLength(parameterLength)) {
Review comment:
Good idea.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]