You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Expr pushed down to tskv, the 'BETWEEN' expression is not supported yet.
Describe the solution you'd like
syntax
-- SELECT column1_name, column2_name, columnN_name FROM table_name WHERE column_name BETWEEN min_value AND max_value;
<between predicate> ::=
<column name> <between predicate part>
<between predicate part> ::=
[ NOT ] BETWEEN
<literal value min> AND <literal value max>
eg.
SELECT*FROM employees
WHERE
salary BETWEEN 7000AND9000;
suggest
implement Expr::Between branch logic in pre_visit and post_visit of domain::RowExpressionToDomainsVisitor
Describe alternatives you've considered
Additional context
notes
only support column and literal value in between operator
ohter expr in between operator will translate to Domain::All (mean the operator match all records)
Is your feature request related to a problem? Please describe.
Expr pushed down to tskv, the 'BETWEEN' expression is not supported yet.
Describe the solution you'd like
eg.
implement Expr::Between branch logic in pre_visit and post_visit of domain::RowExpressionToDomainsVisitor
Describe alternatives you've considered
Additional context
notes
As part of #539 for predicate push down.
The text was updated successfully, but these errors were encountered: