-
-
Notifications
You must be signed in to change notification settings - Fork 558
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
Delete with returning #1509
Delete with returning #1509
Conversation
… get the model of a deleted element
…ause it's not on the database
…n the model don't exist
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.
Hey @AmineZouitine, thanks for contributing!!
I think it's better to enable Deleter
to execute a delete statement while returning a single model or vector of model.
I imagine there could be two new methods in the Deleter
:
async fn one(mut self, db: &C) -> Result<Model, DbErr>
async fn all(mut self, db: &C) -> Result<Vec<Model>, DbErr>
Both methods did the same thing except that it yields single / multiple Model. For DB that support returning it should add returning expression to the DeleteStatement
.
Otherwise, if the DB does not support returning. We need to extract the WHERE
condition from the delete statement, construct a select statement based on that and then query the rows. Finally, return the selected rows after the delete statement has been executed.
closed in favor of #2432 |
PR Info
New Features
DeleteOne
structure that returns the deleted element. I based this implementation on the update method.Bug Fixes
Breaking Changes
Additional information
The Pull Request doesn't fully match the issue. After reviewing the entire code, I've taken the initiative to stay within the scope of the existing code, particularly the executor/update, which also defines a way to retrieve an element with the "RETURNING" feature.
Tests
Here
I have written two tests to verify the proper functioning of the new feature:
delete_one_with_returning
: This test verifies that the model is correctly retrieved after a delete operation.delete_one_with_returning_not_exist
: This test ensures that the program triggers the correct error when the entry does not exist.