We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 467a804 commit 80ad713Copy full SHA for 80ad713
datafusion/optimizer/src/test/mod.rs
@@ -133,20 +133,6 @@ pub fn assert_analyzed_plan_with_config_eq(
133
Ok(())
134
}
135
136
-pub fn assert_analyzed_plan_ne(
137
- rule: Arc<dyn AnalyzerRule + Send + Sync>,
138
- plan: LogicalPlan,
139
- expected: &str,
140
-) -> Result<()> {
141
- let options = ConfigOptions::default();
142
- let analyzed_plan =
143
- Analyzer::with_rules(vec![rule]).execute_and_check(plan, &options, |_, _| {})?;
144
- let formatted_plan = format!("{analyzed_plan}");
145
- assert_ne!(formatted_plan, expected);
146
-
147
- Ok(())
148
-}
149
150
pub fn assert_analyzed_plan_eq_display_indent(
151
rule: Arc<dyn AnalyzerRule + Send + Sync>,
152
plan: LogicalPlan,
0 commit comments