amrishlal commented on a change in pull request #7568: URL: https://github.com/apache/pinot/pull/7568#discussion_r746092017
########## File path: pinot-core/src/main/java/org/apache/pinot/core/plan/FilterPlanNode.java ########## @@ -217,9 +216,9 @@ private BaseFilterOperator constructPhysicalOperator(FilterContext filter) { return FilterOperatorUtils.getLeafFilterOperator(predicateEvaluator, dataSource, _numDocs); case JSON_MATCH: JsonIndexReader jsonIndex = dataSource.getJsonIndex(); - Preconditions.checkState(jsonIndex != null, "Cannot apply JSON_MATCH on column: %s without json index", - column); - return new JsonMatchFilterOperator(jsonIndex, ((JsonMatchPredicate) predicate).getValue(), _numDocs); + Preconditions + .checkState(jsonIndex != null, "Cannot apply JSON_MATCH on column: %s without json index", column); Review comment: Leaving this out as it appears to be unrelated to this PR. -- 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