fx19880617 opened a new pull request #5070: Handle predicate right side expression URL: https://github.com/apache/incubator-pinot/pull/5070 For operators: =,<>, >, >=, <, <=, we used to only support literal only on right side. This change overwrites the predicate by moving right side to left side with minus operator. E.g., `WHERE a > b` will be rewrote to `WHERE a - b > 0` `WHERE a = b + 10` will be rewrote to `WHERE a - (b + 10) = 0`
---------------------------------------------------------------- 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]
