risingwave_frontend/expr/
parameter.rs1use std::fmt::{Debug, Formatter};
16use std::hash::{Hash, Hasher};
17
18use risingwave_common::types::DataType;
19
20use super::Expr;
21use crate::binder::ParameterTypes;
22
23#[derive(Clone)]
24pub struct Parameter {
25 pub index: u64,
26 param_types: ParameterTypes,
27}
28
29impl Debug for Parameter {
30 fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
31 write!(
32 f,
33 "Parameter(index: {}, type: {:?})",
34 self.index,
35 self.param_types.read_type(self.index)
36 )
37 }
38}
39
40impl PartialEq for Parameter {
41 fn eq(&self, other: &Self) -> bool {
42 self.index == other.index
43 }
44}
45
46impl Eq for Parameter {}
47
48impl Hash for Parameter {
49 fn hash<H: Hasher>(&self, state: &mut H) {
50 self.index.hash(state);
51 }
52}
53
54impl Expr for Parameter {
55 fn return_type(&self) -> DataType {
56 self.param_types
57 .read_type(self.index)
58 .unwrap_or(DataType::Varchar)
59 }
60
61 fn to_expr_proto(&self) -> risingwave_pb::expr::ExprNode {
62 unreachable!("Parameter should not be serialized to ExprNode")
63 }
64}
65
66impl Parameter {
67 pub fn new(index: u64, mut param_types: ParameterTypes) -> Self {
68 param_types.record_new_param(index);
69 Self { index, param_types }
70 }
71
72 pub fn has_infer(&self) -> bool {
73 self.param_types.has_infer(self.index)
74 }
75
76 pub fn cast_infer_type(&mut self, data_type: DataType) {
77 self.param_types.record_infer_type(self.index, data_type);
78 }
79}