| 292 | /// Aggregate expression |
| 293 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 294 | pub struct AggregateExpression { |
| 295 | pub function: AggregateFunction, |
| 296 | pub expression: Expression, |
| 297 | pub alias: Option<String>, |
| 298 | } |
| 299 | |
| 300 | /// Aggregate functions |
| 301 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected