Github user selvaganesang commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1746#discussion_r237714202
--- Diff: core/sql/executor/HiveClient_JNI.cpp ---
@@ -68,6 +68,27 @@ char* HiveClient_JNI::getErrorText(HVC_RetCode errEnum)
return (char*)hvcErrorEnumStr[errEnum-HVC_FIRST-1];
}
+//////////////////////////////////////////////////////////////////////////////
+//
+//////////////////////////////////////////////////////////////////////////////
+HiveClient_JNI* HiveClient_JNI::newInstance(NAHeap *heap, HVC_RetCode
&retCode)
+{
+ QRLogger::log(CAT_SQL_HDFS, LL_DEBUG, "HiveClient_JNI::newInstance()
called.");
--- End diff --
Let me try to get rid of logging unless it makes sense
---