stalary commented on code in PR #9206: URL: https://github.com/apache/incubator-doris/pull/9206#discussion_r860314739
########## fe/fe-core/src/main/java/org/apache/doris/analysis/InPredicate.java: ########## @@ -209,16 +209,16 @@ public void analyzeImpl(Analyzer analyzer) throws AnalysisException { opcode = isNotIn ? TExprOpcode.FILTER_NOT_IN : TExprOpcode.FILTER_IN; } else { fn = getBuiltinFunction(analyzer, isNotIn ? NOT_IN_ITERATE : IN_ITERATE, - argTypes, Function.CompareMode.IS_NONSTRICT_SUPERTYPE_OF); + argTypes, Function.CompareMode.IS_NONSTRICT_SUPERTYPE_OF); opcode = isNotIn ? TExprOpcode.FILTER_NEW_NOT_IN : TExprOpcode.FILTER_NEW_IN; } Reference<SlotRef> slotRefRef = new Reference<SlotRef>(); Reference<Integer> idxRef = new Reference<Integer>(); if (isSingleColumnPredicate(slotRefRef, idxRef) - && idxRef.getRef() == 0 && slotRefRef.getRef().getNumDistinctValues() > 0) { + && idxRef.getRef() == 0 && slotRefRef.getRef().getNumDistinctValues() > 0) { selectivity = (double) (getChildren().size() - 1) / (double) slotRefRef.getRef() - .getNumDistinctValues(); + .getNumDistinctValues(); Review Comment: This is a mistake I made, my IDE automatically fixes it and I will fix it -- 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...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org