yashmayya commented on code in PR #14110: URL: https://github.com/apache/pinot/pull/14110#discussion_r1869353974
########## pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BrokerRequestHandlerDelegate.java: ########## @@ -138,4 +147,18 @@ public boolean cancelQuery(long queryId, int timeoutMs, Executor executor, HttpC // not found, try on the singleStaged engine. return _singleStageBrokerRequestHandler.cancelQuery(queryId, timeoutMs, executor, connMgr, serverResponses); } + + private CursorResponse getCursorResponse(Integer numRows, BrokerResponse response) + throws Exception { + if (numRows == null) { + throw new RuntimeException("numRows not specified when requesting a cursor for request id: " + + response.getRequestId()); Review Comment: Needs reformatting - causing a checkstyle failure currently. -- 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: commits-unsubscr...@pinot.apache.org 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