| 1416 | /// for Apache Spark definition. |
| 1417 | #[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)] |
| 1418 | pub enum GroupingSet { |
| 1419 | /// Rollup grouping sets |
| 1420 | Rollup(Vec<Expr>), |
| 1421 | /// Cube grouping sets |
| 1422 | Cube(Vec<Expr>), |
| 1423 | /// User-defined grouping sets |
| 1424 | GroupingSets(Vec<Vec<Expr>>), |
| 1425 | } |
| 1426 | |
| 1427 | impl GroupingSet { |
| 1428 | /// Return all distinct exprs in the grouping set. For `CUBE` and `ROLLUP` this |
no outgoing calls
no test coverage detected
searching dependent graphs…