Jackie-Jiang commented on a change in pull request #7568: URL: https://github.com/apache/pinot/pull/7568#discussion_r759796029
########## File path: pinot-core/src/main/java/org/apache/pinot/core/operator/filter/predicate/PredicateEvaluatorProvider.java ########## @@ -37,47 +37,65 @@ private PredicateEvaluatorProvider() { public static PredicateEvaluator getPredicateEvaluator(Predicate predicate, @Nullable Dictionary dictionary, DataType dataType) { + PredicateEvaluator predicateEvaluator; Review comment: This file can be reverted ########## File path: pinot-core/src/main/java/org/apache/pinot/core/operator/DocIdSetOperator.java ########## @@ -34,6 +37,7 @@ */ public class DocIdSetOperator extends BaseOperator<DocIdSetBlock> { private static final String OPERATOR_NAME = "DocIdSetOperator"; + private static final String EXPLAIN_NAME = null; Review comment: Why do we want to skip this operator? It should sit between filter operator and projection operator ########## File path: pinot-core/src/main/java/org/apache/pinot/core/common/Operator.java ########## @@ -46,6 +47,12 @@ */ String getOperatorName(); + /** @return List of {@link Operator}s that this operator depends upon. */ + List<Operator> getChildOperators(); + + /** @return Description of this operator for Explain Plan */ + String toExplainString(); Review comment: Shall we annotate it as `nullable` and add some javadoc explaining the expected behavior when it returns `null`? -- 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