siddharthteotia commented on a change in pull request #5538: URL: https://github.com/apache/incubator-pinot/pull/5538#discussion_r440506073
########## File path: pinot-core/src/main/java/org/apache/pinot/core/query/executor/ServerQueryExecutorV1Impl.java ########## @@ -205,8 +205,9 @@ public DataTable processQuery(ServerQueryRequest queryRequest, ExecutorService e metadata.put(DataTable.NUM_SEGMENTS_MATCHED, "0"); } else { TimerContext.Timer planBuildTimer = timerContext.startNewPhaseTimer(ServerQueryPhase.BUILD_QUERY_PLAN); - Plan globalQueryPlan = - _planMaker.makeInterSegmentPlan(segmentDataManagers, brokerRequest, executorService, remainingTimeMs); + Plan globalQueryPlan = _planMaker + .makeInterSegmentPlan(segmentDataManagers, queryContext.getBrokerRequest(), executorService, + remainingTimeMs); Review comment: Got it. Thanks. ---------------------------------------------------------------- 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