risingwave_frontend/expr/
correlated_input_ref.rs1use core::fmt;
16
17use risingwave_common::types::DataType;
18
19use super::Expr;
20
21pub type Depth = usize;
22pub type CorrelatedId = u32;
23
24#[derive(Clone, Eq, PartialEq, Hash)]
28pub enum Position {
29 Relative(Depth),
30 Absolute(CorrelatedId),
31}
32
33#[derive(Clone, Eq, PartialEq, Hash)]
39pub struct CorrelatedInputRef {
40 index: usize,
41 data_type: DataType,
42 position: Position,
43}
44
45impl CorrelatedInputRef {
46 pub fn new(index: usize, data_type: DataType, depth: usize) -> Self {
47 CorrelatedInputRef {
48 index,
49 data_type,
50 position: Position::Relative(depth),
51 }
52 }
53
54 pub fn index(&self) -> usize {
56 self.index
57 }
58
59 pub fn depth(&self) -> usize {
60 match self.position {
61 Position::Relative(depth) => depth,
62 Position::Absolute(_) => 0,
63 }
64 }
65
66 pub fn set_correlated_id(&mut self, correlated_id: CorrelatedId) {
67 self.position = Position::Absolute(correlated_id);
68 }
69
70 pub fn correlated_id(&self) -> CorrelatedId {
71 match self.position {
72 Position::Relative(_) => 0,
73 Position::Absolute(correlated_id) => correlated_id,
74 }
75 }
76}
77
78impl Expr for CorrelatedInputRef {
79 fn return_type(&self) -> DataType {
80 self.data_type.clone()
81 }
82
83 fn to_expr_proto(&self) -> risingwave_pb::expr::ExprNode {
84 unreachable!("CorrelatedInputRef {:?} has not been decorrelated", self)
85 }
86}
87
88impl fmt::Debug for CorrelatedInputRef {
89 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
90 f.debug_struct("CorrelatedInputRef")
91 .field("index", &self.index)
92 .field("correlated_id", &self.correlated_id())
93 .finish()
94 }
95}