| 370 | } |
| 371 | |
| 372 | IMPALA_UDF_EXPORT |
| 373 | BooleanVal ValidateOpen(FunctionContext* context, const IntVal& dummy) { |
| 374 | void* state = context->GetFunctionState(FunctionContext::THREAD_LOCAL); |
| 375 | return BooleanVal(state != NULL); |
| 376 | } |
| 377 | |
| 378 | IMPALA_UDF_EXPORT |
| 379 | void ValidateOpenClose( |
nothing calls this directly
no test coverage detected