risingwave_frontend/optimizer/rule/
union_merge_rule.rs1use super::{BoxedRule, Rule};
16use crate::optimizer::PlanRef;
17use crate::optimizer::plan_node::{LogicalUnion, PlanTreeNode};
18
19pub struct UnionMergeRule {}
20impl Rule for UnionMergeRule {
21 fn apply(&self, plan: PlanRef) -> Option<PlanRef> {
22 let top_union: &LogicalUnion = plan.as_logical_union()?;
23 let top_all = top_union.all();
24 let mut new_inputs = vec![];
25 let mut has_merge = false;
26 for input in top_union.inputs() {
27 if let Some(bottom_union) = input.as_logical_union()
28 && bottom_union.all() == top_all
29 {
30 new_inputs.extend(bottom_union.inputs());
31 has_merge = true;
32 } else {
33 new_inputs.push(input);
34 }
35 }
36
37 if has_merge {
38 Some(top_union.clone_with_inputs(&new_inputs))
39 } else {
40 None
41 }
42 }
43}
44
45impl UnionMergeRule {
46 pub fn create() -> BoxedRule {
47 Box::new(UnionMergeRule {})
48 }
49}