Max wraps the ident with the MAX aggregation function.
(ident string)
| 1465 | |
| 1466 | // Max wraps the ident with the MAX aggregation function. |
| 1467 | func Max(ident string) string { |
| 1468 | f := &Func{} |
| 1469 | f.Max(ident) |
| 1470 | return f.String() |
| 1471 | } |
| 1472 | |
| 1473 | // Max wraps the ident with the MAX aggregation function. |
| 1474 | func (f *Func) Max(ident string) { |