buchireddy commented on a change in pull request #5892: URL: https://github.com/apache/incubator-pinot/pull/5892#discussion_r472498903
########## File path: pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/BrokerResponse.java ########## @@ -38,6 +39,126 @@ private BrokerResponse(JsonNode brokerResponse) { _exceptions = brokerResponse.get("exceptions"); _selectionResults = brokerResponse.get("selectionResults"); _resultTable = brokerResponse.get("resultTable"); + _responseStats = ResponseStats.fromJson(brokerResponse); + } + + public static class ResponseStats { Review comment: Done. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org