gortiz commented on code in PR #12704:
URL: https://github.com/apache/pinot/pull/12704#discussion_r1565379309


##########
pinot-common/src/main/java/org/apache/pinot/common/response/broker/BrokerResponseNativeV2.java:
##########
@@ -61,36 +67,31 @@ public BrokerResponseNativeV2(List<ProcessingException> 
exceptions) {
     super(exceptions);
   }
 
-  /** Generate EXPLAIN PLAN output when queries are evaluated by Broker 
without going to the Server. */
-  private static BrokerResponseNativeV2 getBrokerResponseExplainPlanOutput() {
-    BrokerResponseNativeV2 brokerResponse = BrokerResponseNativeV2.empty();
-    List<Object[]> rows = new ArrayList<>();
-    rows.add(new Object[]{"BROKER_EVALUATE", 0, -1});
-    brokerResponse.setResultTable(new 
ResultTable(DataSchema.EXPLAIN_RESULT_SCHEMA, rows));
-    return brokerResponse;

Review Comment:
   This method was not used



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