risingwave_frontend/optimizer/plan_visitor/
rw_timestamp_validator.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 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}