Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Enhanc RowExpressionToDomainsVisitor to support not equal expr push down #559

Open
yukkit opened this issue Aug 20, 2022 · 1 comment
Assignees
Labels

Comments

@yukkit
Copy link
Contributor

yukkit commented Aug 20, 2022

Is your feature request related to a problem? Please describe.
Expr pushed down to tskv, the binary expression with '!=' is not supported yet.

support Not Equals operator <> (or !=)

Describe the solution you'd like

  • syntax
<not equal predicate> ::=
  <column name> { <> | != } <literal value>
  | <literal value> { <> | != } <column name>

eg.

SELECT * FROM employees
WHERE emp_id != 2;
  • suggest
    implement Range::ne

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
As part of #539 for predicate push down.

@guojidan
Copy link
Contributor

assign to me : )

@guojidan guojidan mentioned this issue Sep 1, 2023
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants