Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2816#discussion_r228213436
--- Diff: store/CSDK/main.cpp ---
@@ -99,21 +102,187 @@ bool readFromLocalWithoutProjection(JNIEnv *env) {
printf("%s\t", carbonRow.getDecimal(10));
printf("%f\t", carbonRow.getFloat(11));
printf("\n");
+ env->DeleteLocalRef(row);
+ env->DeleteLocalRef(array1);
}
carbonReaderClass.close();
}
+/**
+ * test next Row Performance
+ *
+ * @param env jni env
+ * @return
+ */
+bool testNextRowPerformance(JNIEnv *env, char *path, int printNum, char
*argv[], int argc) {
--- End diff --
Same comment, this is internal comparision. No need to add in example test
case.
---