gortiz commented on code in PR #16038: URL: https://github.com/apache/pinot/pull/16038#discussion_r2135199476
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/HashJoinOperator.java: ########## @@ -59,16 +60,21 @@ public class HashJoinOperator extends BaseJoinOperator { // TODO: Optimize this @Nullable private Map<Object, BitSet> _matchedRightRows; + // Store null key rows separately for RIGHT and FULL JOINs + @Nullable + private List<Object[]> _nullKeyRightRows; public HashJoinOperator(OpChainExecutionContext context, MultiStageOperator leftInput, DataSchema leftSchema, - MultiStageOperator rightInput, JoinNode node) { + MultiStageOperator rightInput, JoinNode node) { Review Comment: nit: This is not the codestyle we usually use. -- 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