-
-
Notifications
You must be signed in to change notification settings - Fork 192
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
Get values from update statement #578
Conversation
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.
@billy1624 hello! LGTM!
@billy1624 I have updated CHANGELOG.md: https://github.com/SeaQL/sea-query/blob/0.28.x/CHANGELOG.md And cherry-pick your commit: e63f082 |
Thanks!! @ikrivosheev |
@@ -314,6 +314,11 @@ impl UpdateStatement { | |||
pub fn with(self, clause: WithClause) -> WithQuery { | |||
clause.query(self) | |||
} | |||
|
|||
/// Get column values | |||
pub fn get_values(&self) -> &Vec<(DynIden, Box<SimpleExpr>)> { |
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.
Can this be an &[(DynIden, Box<SimpleExpr>)]
instead?
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.
Okay!
PR Info
Dependents:
Cherry pick this back to the master branch
New Features
UpdateStatement::values
field