| 265 | } |
| 266 | |
| 267 | Result<Datum> All(const Datum& value, const ScalarAggregateOptions& options, |
| 268 | ExecContext* ctx) { |
| 269 | return CallFunction("all", {value}, &options, ctx); |
| 270 | } |
| 271 | |
| 272 | Result<Datum> Mode(const Datum& value, const ModeOptions& options, ExecContext* ctx) { |
| 273 | return CallFunction("mode", {value}, &options, ctx); |