risingwave_frontend/optimizer/property/
mod.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
15//! Define all property of plan tree node, which actually represent property of the node's result.
16//!
17//! We have physical property [`Order`] and [`Distribution`] which is on batch or stream operator,
18//! also, we have logical property which all [`PlanNode`][PlanNode] has.
19//!
20//! We have not give any common abstract trait for the property yet. They are not so much and we
21//! don't need get a common behavior now. we can treat them as different traits of the
22//! [`PlanNode`][PlanNode] now and refactor them when our optimizer need more
23//! (such as an optimizer based on the Volcano/Cascades model).
24//!
25//! [PlanNode]: super::plan_node::PlanNode
26
27pub(crate) mod order;
28pub use order::*;
29mod distribution;
30pub use distribution::*;
31mod func_dep;
32pub use func_dep::*;
33mod cardinality;
34pub use cardinality::*;
35mod monotonicity;
36pub use monotonicity::*;
37mod watermark_columns;
38pub use watermark_columns::*;