File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ fn analyze_rule_for_local_runtime(
91
91
session_state_ref : SessionStateRef ,
92
92
) -> Vec < Arc < dyn AnalyzerRule + Send + Sync > > {
93
93
vec ! [
94
- // Every rule that will generate [Expr::Wildcard] should be placed in front of [ExpandWildcardRule] .
94
+ // To align the lastest change in datafusion, apply this this rule first .
95
95
Arc :: new( ExpandWildcardRule :: new( ) ) ,
96
96
// expand the view should be the first rule
97
97
Arc :: new( ExpandWrenViewRule :: new(
@@ -120,7 +120,7 @@ fn analyze_rule_for_unparsing(
120
120
session_state_ref : SessionStateRef ,
121
121
) -> Vec < Arc < dyn AnalyzerRule + Send + Sync > > {
122
122
vec ! [
123
- // Every rule that will generate [Expr::Wildcard] should be placed in front of [ExpandWildcardRule] .
123
+ // To align the lastest change in datafusion, apply this this rule first .
124
124
Arc :: new( ExpandWildcardRule :: new( ) ) ,
125
125
// expand the view should be the first rule
126
126
Arc :: new( ExpandWrenViewRule :: new(
You can’t perform that action at this time.
0 commit comments