Skip to content

Commit

Permalink
[VL] RAS: Integrate filter rules into enumerated transform (#5367)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhztheplayer authored Apr 12, 2024
1 parent 62fc603 commit 14b416c
Show file tree
Hide file tree
Showing 138 changed files with 16,644 additions and 18,371 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
backends-velox/src/test/resources/tpch-approved-plan/** linguist-generated
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import org.apache.spark.sql.execution.SparkPlan

case class FilterExecTransformer(condition: Expression, child: SparkPlan)
extends FilterExecTransformerBase(condition, child) {
// FIXME: Should use field "condition" to store the actual executed filter expressions.
// To make optimization easier (like to remove filter when it actually does nothing)
override protected def getRemainingCondition: Expression = {
val scanFilters = child match {
// Get the filters including the manually pushed down ones.
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit 14b416c

Please sign in to comment.