Skip to content

Commit 1ced721

Browse files
committed
enhance comment
1 parent 241b9bf commit 1ced721

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wren-core/core/src/mdl/context.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ fn analyze_rule_for_local_runtime(
9191
session_state_ref: SessionStateRef,
9292
) -> Vec<Arc<dyn AnalyzerRule + Send + Sync>> {
9393
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.
9595
Arc::new(ExpandWildcardRule::new()),
9696
// expand the view should be the first rule
9797
Arc::new(ExpandWrenViewRule::new(
@@ -120,7 +120,7 @@ fn analyze_rule_for_unparsing(
120120
session_state_ref: SessionStateRef,
121121
) -> Vec<Arc<dyn AnalyzerRule + Send + Sync>> {
122122
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.
124124
Arc::new(ExpandWildcardRule::new()),
125125
// expand the view should be the first rule
126126
Arc::new(ExpandWrenViewRule::new(

0 commit comments

Comments
 (0)