kaiwangchen opened a new issue, #19082: URL: https://github.com/apache/datafusion/issues/19082
### Is your feature request related to a problem or challenge? Here is an example: ``` create table t (c1 int, c2 int); insert into t values (1, 2); select c1 from t where c2 > any(select c2 - 1 from t); Error during planning: Unsupported AnyOp: '>', only '=' is supported ``` ### Describe the solution you'd like ``` D create table t (c1 int, c2 int); D insert into t values (1, 2); D select c1 from t where c2 > any(select c2 - 1 from t); ┌───────┐ │ c1 │ │ int32 │ ├───────┤ │ 1 │ └───────┘ mysql> create table t (c1 int, c2 int); mysql> insert into t values (1, 2); mysql> select c1 from t where c2 > any(select c2 - 1 from t); +------+ | c1 | +------+ | 1 | +------+ 1 row in set (0.00 sec) ``` ### Describe alternatives you've considered _No response_ ### 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
