risingwave_frontend/optimizer/plan_node/generic/
share.rs1use std::cell::RefCell;
16use std::hash::Hash;
17
18use risingwave_common::catalog::Schema;
19
20use super::{GenericPlanNode, GenericPlanRef};
21use crate::OptimizerContextRef;
22use crate::optimizer::property::FunctionalDependencySet;
23
24#[derive(Debug, Clone, PartialEq, Eq)]
25pub struct Share<PlanRef> {
26 pub input: RefCell<PlanRef>,
27}
28
29impl<P: Hash> Hash for Share<P> {
30 fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
31 self.input.borrow().hash(state);
32 }
33}
34
35impl<PlanRef: GenericPlanRef> Share<PlanRef> {
36 pub fn replace_input(&self, plan: PlanRef) {
37 *self.input.borrow_mut() = plan;
38 }
39}
40
41impl<PlanRef: GenericPlanRef> GenericPlanNode for Share<PlanRef> {
42 fn schema(&self) -> Schema {
43 self.input.borrow().schema().clone()
44 }
45
46 fn stream_key(&self) -> Option<Vec<usize>> {
47 Some(self.input.borrow().stream_key()?.to_vec())
48 }
49
50 fn ctx(&self) -> OptimizerContextRef {
51 self.input.borrow().ctx()
52 }
53
54 fn functional_dependency(&self) -> FunctionalDependencySet {
55 self.input.borrow().functional_dependency().clone()
56 }
57}