()
| 298 | |
| 299 | #[test] |
| 300 | fn rollup_three_cols() { |
| 301 | let gb = parse_group_by("SELECT a, b, c, SUM(x) FROM t GROUP BY ROLLUP (a, b, c)"); |
| 302 | let result = expand_group_by(&gb).unwrap().unwrap(); |
| 303 | assert_eq!(result.grouping_sets.len(), 4); // (a,b,c),(a,b),(a),() |
| 304 | } |
| 305 | } |
nothing calls this directly
no test coverage detected