| 226 | // Scalar aggregates |
| 227 | |
| 228 | Result<Datum> Count(const Datum& value, const CountOptions& options, ExecContext* ctx) { |
| 229 | return CallFunction("count", {value}, &options, ctx); |
| 230 | } |
| 231 | |
| 232 | Result<Datum> Mean(const Datum& value, const ScalarAggregateOptions& options, |
| 233 | ExecContext* ctx) { |