Aggregate adds the given aggregation functions to the selector query.
(fns ...AggregateFunc)
| 491 | |
| 492 | // Aggregate adds the given aggregation functions to the selector query. |
| 493 | func (ss *SettingSelect) Aggregate(fns ...AggregateFunc) *SettingSelect { |
| 494 | ss.fns = append(ss.fns, fns...) |
| 495 | return ss |
| 496 | } |
| 497 | |
| 498 | // Scan applies the selector query and scans the result into the given value. |
| 499 | func (ss *SettingSelect) Scan(ctx context.Context, v any) error { |
nothing calls this directly
no outgoing calls
no test coverage detected