| 267 | } |
| 268 | |
| 269 | void CheckVectorUnary(std::string func_name, Datum input, Datum expected, |
| 270 | const FunctionOptions* options) { |
| 271 | ASSERT_OK_AND_ASSIGN(Datum actual, CallFunction(func_name, {input}, options)); |
| 272 | ValidateOutput(actual); |
| 273 | AssertDatumsEqual(expected, actual, /*verbose=*/true); |
| 274 | } |
| 275 | |
| 276 | void CheckScalarBinary(std::string func_name, Datum left_input, Datum right_input, |
| 277 | Datum expected, const FunctionOptions* options) { |
no test coverage detected