risingwave_frontend/utils/
group_by.rs1use auto_enums::auto_enum;
16
17use crate::expr::ExprImpl;
18
19#[derive(Debug, Clone)]
20pub enum GroupBy {
21 GroupKey(Vec<ExprImpl>),
22 GroupingSets(Vec<Vec<ExprImpl>>),
23 Rollup(Vec<Vec<ExprImpl>>),
24 Cube(Vec<Vec<ExprImpl>>),
25}
26
27impl GroupBy {
28 pub fn is_empty(&self) -> bool {
29 match self {
30 GroupBy::GroupKey(group_key) => group_key.is_empty(),
31 GroupBy::GroupingSets(grouping_sets) => grouping_sets.is_empty(),
32 GroupBy::Rollup(rollup) => rollup.is_empty(),
33 GroupBy::Cube(cube) => cube.is_empty(),
34 }
35 }
36
37 #[auto_enum(Iterator)]
38 pub fn iter(&self) -> impl Iterator<Item = &ExprImpl> {
39 match self {
40 GroupBy::GroupKey(group_key) => group_key.iter(),
41 GroupBy::GroupingSets(grouping_sets) => grouping_sets.iter().flat_map(|v| v.iter()),
42 GroupBy::Rollup(rollup) => rollup.iter().flat_map(|v| v.iter()),
43 GroupBy::Cube(cube) => cube.iter().flat_map(|v| v.iter()),
44 }
45 }
46
47 #[auto_enum(Iterator)]
48 pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut ExprImpl> {
49 match self {
50 GroupBy::GroupKey(group_key) => group_key.iter_mut(),
51 GroupBy::GroupingSets(grouping_sets) => {
52 grouping_sets.iter_mut().flat_map(|v| v.iter_mut())
53 }
54 GroupBy::Rollup(rollup) => rollup.iter_mut().flat_map(|v| v.iter_mut()),
55 GroupBy::Cube(cube) => cube.iter_mut().flat_map(|v| v.iter_mut()),
56 }
57 }
58}