risingwave_frontend/optimizer/rule/
except_merge_rule.rs1use super::{BoxedRule, Rule};
16use crate::optimizer::PlanRef;
17use crate::optimizer::plan_node::{LogicalExcept, PlanTreeNode};
18
19pub struct ExceptMergeRule {}
22impl Rule for ExceptMergeRule {
23 fn apply(&self, plan: PlanRef) -> Option<PlanRef> {
24 let top_except: &LogicalExcept = plan.as_logical_except()?;
25 let top_all = top_except.all();
26 let top_except_inputs = top_except.inputs();
27 let (left_most_input, remain_vec) = top_except_inputs.split_at(1);
28
29 if let Some(bottom_except) = left_most_input[0].as_logical_except()
30 && bottom_except.all() == top_all
31 {
32 let mut new_inputs = vec![];
33 new_inputs.extend(bottom_except.inputs());
34 new_inputs.extend(remain_vec.iter().cloned());
35 Some(top_except.clone_with_inputs(&new_inputs))
36 } else {
37 None
38 }
39 }
40}
41
42impl ExceptMergeRule {
43 pub fn create() -> BoxedRule {
44 Box::new(ExceptMergeRule {})
45 }
46}