lordgamez commented on code in PR #1840:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1840#discussion_r1840238106


##########
extensions/sql/tests/SQLTestPlan.h:
##########
@@ -75,15 +75,15 @@ class SQLTestPlan {
     return flow_file;
   }
 
-  std::shared_ptr<core::Processor> getSQLProcessor() {
+  core::Processor* getSQLProcessor() {
     return processor_;
   }
 
   void run(bool reschedule = false) {
     if (reschedule) {
       plan_->reset(reschedule);
     }
-    plan_->runProcessor(0);  // run the one and only sql processor
+    plan_->runProcessor(static_cast<size_t>(0));  // run the one and only sql 
processor

Review Comment:
   Because of changing the runProcessor interface to expect a raw pointer 
parameter the call it with and integer is ambiguous because there is a `size_t` 
parameter overload too.



-- 
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]

Reply via email to