walterddr commented on code in PR #10673:
URL: https://github.com/apache/pinot/pull/10673#discussion_r1178311641
##########
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/QueryPlan.java:
##########
@@ -39,13 +45,15 @@
public class QueryPlan {
private final List<Pair<Integer, String>> _queryResultFields;
private final Map<Integer, StageNode> _queryStageMap;
- private final Map<Integer, StageMetadata> _stageMetadataMap;
+ private final List<StageMetadata> _stageMetadataList;
+ private final Map<Integer, DispatchablePlanMetadata>
_dispatchablePlanMetadataMap;
Review Comment:
keeping it as a map will probably be changed going forward. currently this
map is not used anywhere in wire protocol so we should be able to individually
change this going forward. will follow up if we needed to change this in the
batch-dispatcher support PR
--
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]