This is an automated email from the ASF dual-hosted git repository.

yjshen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 303d149564 Fix compilation error (#6029)
303d149564 is described below

commit 303d14956485ec08bdd9a3ad5cb4e8f9c7c7ea94
Author: Liang-Chi Hsieh <[email protected]>
AuthorDate: Sun Apr 16 17:42:43 2023 -0700

    Fix compilation error (#6029)
---
 datafusion/optimizer/src/test/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/optimizer/src/test/mod.rs 
b/datafusion/optimizer/src/test/mod.rs
index 899dc74c79..2fc92758f1 100644
--- a/datafusion/optimizer/src/test/mod.rs
+++ b/datafusion/optimizer/src/test/mod.rs
@@ -128,7 +128,7 @@ pub fn assert_analyzed_plan_eq_display_indent(
 ) -> Result<()> {
     let options = ConfigOptions::default();
     let analyzed_plan =
-        Analyzer::with_rules(vec![rule]).execute_and_check(plan, &options)?;
+        Analyzer::with_rules(vec![rule]).execute_and_check(plan, &options, |_, 
_| {})?;
     let formatted_plan = format!("{}", analyzed_plan.display_indent_schema());
     assert_eq!(formatted_plan, expected);
 

Reply via email to