| 260 | } |
| 261 | |
| 262 | Result<Datum> Any(const Datum& value, const ScalarAggregateOptions& options, |
| 263 | ExecContext* ctx) { |
| 264 | return CallFunction("any", {value}, &options, ctx); |
| 265 | } |
| 266 | |
| 267 | Result<Datum> All(const Datum& value, const ScalarAggregateOptions& options, |
| 268 | ExecContext* ctx) { |
nothing calls this directly
no test coverage detected