risingwave_frontend/optimizer/plan_node/generic/
share.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use 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}