walterddr commented on code in PR #8689: URL: https://github.com/apache/pinot/pull/8689#discussion_r871798254
########## pinot-query-planner/src/main/java/org/apache/pinot/query/planner/stage/JoinNode.java: ########## @@ -20,25 +20,27 @@ import java.util.List; import org.apache.calcite.rel.core.JoinRelType; -import org.apache.calcite.rel.type.RelDataType; import org.apache.pinot.query.planner.partitioning.FieldSelectionKeySelector; import org.apache.pinot.query.planner.partitioning.KeySelector; import org.apache.pinot.query.planner.serde.ProtoProperties; +import org.apache.pinot.spi.data.FieldSpec; public class JoinNode extends AbstractStageNode { @ProtoProperties private JoinRelType _joinRelType; @ProtoProperties private List<JoinClause> _criteria; + @ProtoProperties + private FieldSpec.DataType _rowType; public JoinNode(int stageId) { super(stageId); } - public JoinNode(int stageId, RelDataType rowType, JoinRelType joinRelType, List<JoinClause> criteria) { + public JoinNode(int stageId, FieldSpec.DataType rowType, JoinRelType joinRelType, List<JoinClause> criteria) { Review Comment: removed this field as it is not used. -- 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