Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lgbo-ustc committed Oct 31, 2024
1 parent 9488005 commit db5ed73
Show file tree
Hide file tree
Showing 4 changed files with 248 additions and 167 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private object CHRuleApi {
// Inject the regular Spark rules directly.
injector.injectQueryStagePrepRule(FallbackBroadcastHashJoinPrepQueryStage.apply)
injector.injectQueryStagePrepRule(spark => CHAQEPropagateEmptyRelation(spark))
injector.injectQueryStagePrepRule(spark => LazyExpandRule(spark))
// injector.injectQueryStagePrepRule(spark => LazyExpandRule(spark))
injector.injectParser(
(spark, parserInterface) => new GlutenCacheFilesSqlParser(spark, parserInterface))
injector.injectParser(
Expand Down Expand Up @@ -84,6 +84,7 @@ private object CHRuleApi {
injector.injectTransform(_ => CollapseProjectExecTransformer)
injector.injectTransform(c => RewriteSortMergeJoinToHashJoinRule.apply(c.session))
injector.injectTransform(c => PushdownAggregatePreProjectionAheadExpand.apply(c.session))
injector.injectTransform(c => LazyAggregateExpandRule.apply(c.session))
injector.injectTransform(
c =>
intercept(
Expand Down
Loading

0 comments on commit db5ed73

Please sign in to comment.