risingwave_frontend/optimizer/plan_node/generic/
limit.rs1use std::hash::Hash;
16
17use pretty_xmlish::{Pretty, Str, XmlNode};
18use risingwave_common::catalog::Schema;
19
20use super::{DistillUnit, GenericPlanNode, GenericPlanRef};
21use crate::OptimizerContextRef;
22use crate::optimizer::plan_node::utils::childless_record;
23use crate::optimizer::property::FunctionalDependencySet;
24
25#[derive(Debug, Clone, PartialEq, Eq, Hash)]
26pub struct Limit<PlanRef> {
27 pub input: PlanRef,
28 pub limit: u64,
29 pub offset: u64,
30}
31
32impl<PlanRef: GenericPlanRef> GenericPlanNode for Limit<PlanRef> {
33 fn ctx(&self) -> OptimizerContextRef {
34 self.input.ctx()
35 }
36
37 fn schema(&self) -> Schema {
38 self.input.schema().clone()
39 }
40
41 fn functional_dependency(&self) -> FunctionalDependencySet {
42 self.input.functional_dependency().clone()
43 }
44
45 fn stream_key(&self) -> Option<Vec<usize>> {
46 Some(self.input.stream_key()?.to_vec())
47 }
48}
49impl<PlanRef> Limit<PlanRef> {
50 pub fn new(input: PlanRef, limit: u64, offset: u64) -> Self {
51 Limit {
52 input,
53 limit,
54 offset,
55 }
56 }
57}
58
59impl<PlanRef> DistillUnit for Limit<PlanRef> {
60 fn distill_with_name<'a>(&self, name: impl Into<Str<'a>>) -> XmlNode<'a> {
61 childless_record(
62 name,
63 vec![
64 ("limit", Pretty::debug(&self.limit)),
65 ("offset", Pretty::debug(&self.offset)),
66 ],
67 )
68 }
69}