RelOptUtil.splitJoinCondition(j.getSystemFieldList(), j.getLeft(), j.getRight(), pe,
joinKeyExprsFromLeft, joinKeyExprsFromRight, filterNulls, null);
// 2. For left expressions, collect child projection indexes used
InputReferencedVisitor irvLeft = new InputReferencedVisitor();
irvLeft.apply(joinKeyExprsFromLeft);
projsFromLeftPartOfJoinKeysInChildSchema.addAll(irvLeft.inputPosReferenced);
// 3. For right expressions, collect child projection indexes used
InputReferencedVisitor irvRight = new InputReferencedVisitor();
irvRight.apply(joinKeyExprsFromRight);