-
-
Notifications
You must be signed in to change notification settings - Fork 197
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
feat: Remove deprecated methods #551
Conversation
@@ -431,7 +431,7 @@ assert_eq!( | |||
|
|||
```rust | |||
let query = Query::select() | |||
.expr(Func::sum(Expr::tbl(Char::Table, Char::SizeH))) | |||
.expr(Func::sum(Expr::col((Char::Table, Char::SizeH)))) |
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.
@@ -456,7 +456,7 @@ | |||
//! ```rust | |||
//! # use sea_query::{*, tests_cfg::*}; | |||
//! let query = Query::select() | |||
//! .expr(Func::sum(Expr::tbl(Char::Table, Char::SizeH))) | |||
//! .expr(Func::sum(Expr::col((Char::Table, Char::SizeH)))) |
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.
Same here :D
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.
LGTM Thanks!! @ikrivosheev
Note to merge master: this should goes into the 0.29.0 release
@billy1624 hello! I did:
|
Got it! Thanks! @ikrivosheev |
🎉 Released In 0.29.0 🎉Your participation is what makes us unique; your adoption is what drives us forward. |
🎉 Released In 0.29.1 🎉Thank you everyone for the contribution! |
Breaking Changes
Expr::tbl
,Expr::greater_than
,Expr::greater_or_equal
,Expr::less_than
,Expr::less_or_equal
,Expr::into_simple_expr
,SimpleExpr::equals
andSimpleExpr::not_equals
InsertStatement::exprs
,InsertStatement::exprs_panic
OnConflict::update_value
,OnConflict::update_values
,OnConflict::update_expr
,OnConflict::update_exprs
UpdateStatement::exprs
,UpdateStatement::col_expr
,UpdateStatement::value_expr