kishoreg opened a new pull request #4365: Adding support for udf/expression in filter predicates URL: https://github.com/apache/incubator-pinot/pull/4365 Support for expressions/udf in the filter predicates. select count(*) from baseballStats where numberOfGames = 100 "aggregationResults": [ { "function": "count_star", "value": "256" }] select count(*) from baseballStats where DIV(numberOfGames,10) = 10 "aggregationResults": [ { "function": "count_star", "value": "256" } Added testFilterUDF to OfflineClusterIntegration test. Things to do as follow up - Support for expressions on MultiValue columns - Support for comparisons between two expressions.
---------------------------------------------------------------- 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]
