risingwave_frontend/optimizer/plan_node/generic/
share.rsuse std::cell::RefCell;
use std::hash::Hash;
use risingwave_common::catalog::Schema;
use super::{GenericPlanNode, GenericPlanRef};
use crate::optimizer::property::FunctionalDependencySet;
use crate::OptimizerContextRef;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Share<PlanRef> {
pub input: RefCell<PlanRef>,
}
impl<P: Hash> Hash for Share<P> {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.input.borrow().hash(state);
}
}
impl<PlanRef: GenericPlanRef> Share<PlanRef> {
pub fn replace_input(&self, plan: PlanRef) {
*self.input.borrow_mut() = plan;
}
}
impl<PlanRef: GenericPlanRef> GenericPlanNode for Share<PlanRef> {
fn schema(&self) -> Schema {
self.input.borrow().schema().clone()
}
fn stream_key(&self) -> Option<Vec<usize>> {
Some(self.input.borrow().stream_key()?.to_vec())
}
fn ctx(&self) -> OptimizerContextRef {
self.input.borrow().ctx()
}
fn functional_dependency(&self) -> FunctionalDependencySet {
self.input.borrow().functional_dependency().clone()
}
}