risingwave_frontend/optimizer/plan_visitor/
rw_timestamp_validator.rs1use risingwave_common::catalog::{RW_TIMESTAMP_COLUMN_ID, RW_TIMESTAMP_COLUMN_NAME};
16
17use super::{DefaultBehavior, Merge};
18use crate::PlanRef;
19use crate::optimizer::plan_node::StreamTableScan;
20use crate::optimizer::plan_visitor::PlanVisitor;
21
22#[derive(Debug, Clone, Default)]
23pub struct RwTimestampValidator {}
24
25impl RwTimestampValidator {
26 pub fn select_rw_timestamp_in_stream_query(plan: PlanRef) -> bool {
27 RwTimestampValidator::default().visit(plan)
28 }
29}
30
31impl PlanVisitor for RwTimestampValidator {
32 type Result = bool;
33
34 type DefaultBehavior = impl DefaultBehavior<Self::Result>;
35
36 fn default_behavior() -> Self::DefaultBehavior {
37 Merge(|a, b| a | b)
38 }
39
40 fn visit_stream_table_scan(&mut self, stream_table_scan: &StreamTableScan) -> bool {
41 stream_table_scan
42 .core()
43 .column_descs()
44 .iter()
45 .any(|c| c.column_id == RW_TIMESTAMP_COLUMN_ID && c.name == RW_TIMESTAMP_COLUMN_NAME)
46 }
47}