itschrispeck opened a new pull request, #13009: URL: https://github.com/apache/pinot/pull/13009
Previously the `text_match` filter optimizer didn't properly push down grouping. For example (tm = text_match): `tm(a) AND (tm(b) OR tm(c))`and `(tm(a) AND tm(b)) OR tm(c)` both were optimized to `tm(a AND b OR c)` This PR corrects the behavior to maintain the grouping, e.g. `tm(a) AND (tm(b) OR tm(c))` -> `tm(a AND (b OR c))` `(tm(a) AND tm(b)) OR tm(c)` -> `tm((a AND b) OR c)` tag: `bugfix` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
