| 253 | } |
| 254 | |
| 255 | IMPALA_UDF_EXPORT |
| 256 | BooleanVal TestError(FunctionContext* context) { |
| 257 | context->SetError("test UDF error"); |
| 258 | context->SetError("this shouldn't show up"); |
| 259 | return BooleanVal(false); |
| 260 | } |
| 261 | |
| 262 | IMPALA_UDF_EXPORT |
| 263 | BooleanVal TestWarnings(FunctionContext* context) { |
nothing calls this directly
no test coverage detected