kishoreg commented on a change in pull request #4365: Adding support for
udf/expression in filter predicates
URL: https://github.com/apache/incubator-pinot/pull/4365#discussion_r298647600
##########
File path:
pinot-core/src/main/java/org/apache/pinot/core/operator/filter/FilterOperatorUtils.java
##########
@@ -151,6 +151,9 @@ int getPriority(BaseFilterOperator filterOperator) {
if (filterOperator instanceof ScanBasedFilterOperator) {
return getScanBasedFilterPriority((ScanBasedFilterOperator)
filterOperator, 4, debugOptions);
}
+ if (filterOperator instanceof ExpressionFilterOperator) {
+ return 10;
Review comment:
we will need a separate PR for that.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]