-
-
Notifications
You must be signed in to change notification settings - Fork 195
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
Deprecated some methods #476
Deprecated some methods #476
Conversation
As talked in Discord, it seems that the Expr::col(Glyph::Id).binary(BinOper::In, Expr::tuple([Expr::cust("1"), Expr::cust("2")])) But this is a bit cumbersome, so he proposed to simplify that within this PR. |
@Razican hello! Thank you, done |
@billy1624 @tyt2y3 can you review the PR? |
@billy1624 @tyt2y3 ping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking great
Changes
Expr::value
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::gt
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::gte
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::lt
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::lte
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::add
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::div
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::sub
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::modulo
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::left_shift
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::right_shift
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::between
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::not_between
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::is
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::is_not
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::if_null
acceptInto<SimpleExpr>
insteadInto<Value>
Expr::is_in
,Expr::is_not_in
acceptInto<SimpleExpr>
insteadInto<Value>
and convert it toSimpleExpr::Tuple
insteadSimpleExpr::Values
Deprecated
Expr::greater_than
Expr::greater_or_equal
Expr::less_than
Expr::less_or_equal