gruuya opened a new issue, #8893: URL: https://github.com/apache/arrow-datafusion/issues/8893
### Is your feature request related to a problem or challenge? Add support for the operators `~~`, `~~*`, `!~~`, `!~~*`, which are short-hand for `LIKE`, `ILIKE`, `NOT LIKE` and `NOT ILIKE` respectively, since they are currently missing. ### Describe the solution you'd like I've opened a sqlparser-rs PR to enable parsing of these tokens into operator enums: https://github.com/sqlparser-rs/sqlparser-rs/pull/1096 Ideally we'd then just extend the `Operator` enum to encompass the new variants, and add evaluation for them like for other binary operators. ### Describe alternatives you've considered Rewriting Postgres queries/ASTs to map the operators into the verbatim `LIKE` expressions. ### Additional context _No response_ -- 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]
