| 979 | }; |
| 980 | |
| 981 | void InitFeSupport(bool disable_codegen) { |
| 982 | fe_support_disable_codegen = disable_codegen; |
| 983 | JNIEnv* env = JniUtil::GetJNIEnv(); |
| 984 | jclass native_backend_cl = env->FindClass("org/apache/impala/service/FeSupport"); |
| 985 | env->RegisterNatives(native_backend_cl, native_methods, |
| 986 | sizeof(native_methods) / sizeof(native_methods[0])); |
| 987 | ABORT_IF_EXC(env); |
| 988 | } |
| 989 | |
| 990 | } |