risingwave_frontend/optimizer/plan_node/generic/
intersect.rsuse pretty_xmlish::{Pretty, StrAssocArr};
use risingwave_common::catalog::Schema;
use super::{impl_distill_unit_from_fields, GenericPlanNode, GenericPlanRef};
use crate::optimizer::optimizer_context::OptimizerContextRef;
use crate::optimizer::property::FunctionalDependencySet;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Intersect<PlanRef> {
pub all: bool,
pub inputs: Vec<PlanRef>,
}
impl<PlanRef: GenericPlanRef> GenericPlanNode for Intersect<PlanRef> {
fn schema(&self) -> Schema {
self.inputs[0].schema().clone()
}
fn stream_key(&self) -> Option<Vec<usize>> {
Some(self.inputs[0].stream_key()?.to_vec())
}
fn ctx(&self) -> OptimizerContextRef {
self.inputs[0].ctx()
}
fn functional_dependency(&self) -> FunctionalDependencySet {
FunctionalDependencySet::new(self.inputs[0].schema().len())
}
}
impl<PlanRef: GenericPlanRef> Intersect<PlanRef> {
pub fn fields_pretty<'a>(&self) -> StrAssocArr<'a> {
vec![("all", Pretty::debug(&self.all))]
}
}
impl_distill_unit_from_fields!(Intersect, GenericPlanRef);