Create a grouping set
(exprs: Vec<Vec<Expr>>)
| 313 | |
| 314 | /// Create a grouping set |
| 315 | pub fn grouping_set(exprs: Vec<Vec<Expr>>) -> Expr { |
| 316 | Expr::GroupingSet(GroupingSet::GroupingSets(exprs)) |
| 317 | } |
| 318 | |
| 319 | /// Create a grouping set for all combination of `exprs` |
| 320 | pub fn cube(exprs: Vec<Expr>) -> Expr { |
searching dependent graphs…