zhztheplayer commented on code in PR #12535:
URL: https://github.com/apache/gluten/pull/12535#discussion_r3630162953


##########
cpp/core/jni/JniCommon.cc:
##########
@@ -67,6 +67,12 @@ gluten::Runtime* gluten::getRuntime(JNIEnv* env, jobject 
runtimeAware) {
   return ctx;
 }
 
+std::unique_ptr<gluten::ColumnarBatchIterator> 
gluten::Runtime::createJniInputIterator(
+    const JniInputIteratorContext& context) {
+  return std::make_unique<JniColumnarBatchIterator>(
+      context.env, context.jColumnarBatchIterator, this, 
context.iteratorIndex);
+}

Review Comment:
   Should this be defined in `Runtime.cc`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to