Count wraps the ident with the COUNT aggregation function.
(ident string)
| 1460 | |
| 1461 | // Count wraps the ident with the COUNT aggregation function. |
| 1462 | func (f *Func) Count(ident string) { |
| 1463 | f.byName("COUNT", ident) |
| 1464 | } |
| 1465 | |
| 1466 | // Max wraps the ident with the MAX aggregation function. |
| 1467 | func Max(ident string) string { |