(&self, expr: &Expr)
| 124 | } |
| 125 | |
| 126 | fn diagnostic_message(&self, expr: &Expr) -> String { |
| 127 | format!( |
| 128 | "'{expr}' must appear in GROUP BY clause because it's not an aggregate expression" |
| 129 | ) |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | /// Determines if the set of `Expr`'s are a valid projection on the input |
no outgoing calls
no test coverage detected