xiangfu0 commented on code in PR #10748: URL: https://github.com/apache/pinot/pull/10748#discussion_r1190343118
########## pinot-query-planner/src/main/java/org/apache/pinot/query/planner/plannode/ExchangeNode.java: ########## @@ -46,11 +47,14 @@ public class ExchangeNode extends AbstractPlanNode { @ProtoProperties private List<RelFieldCollation> _collations; + @ProtoProperties + private Set<String> _tableNames; + public ExchangeNode(int planFragmentId) { super(planFragmentId); } - public ExchangeNode(int currentStageId, DataSchema dataSchema, RelDistribution distribution, + public ExchangeNode(int currentStageId, DataSchema dataSchema, Set<String> tableNames, RelDistribution distribution, Review Comment: It carries the tables to scan under this ExchangeNode. -- 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