Skip to content
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

Closed
wants to merge 12 commits into from

Conversation

AmineZouitine
Copy link

@AmineZouitine AmineZouitine commented Feb 25, 2023

PR Info

  • Dependencies:
    • N/A
  • Dependents:
    • N/A

New Features

  • Addition of method to DeleteOne structure that returns the deleted element. I based this implementation on the update method.

Bug Fixes

  • N/A

Breaking Changes

  • N/A

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.



Copy link
Member

@billy1624 billy1624 left a 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:

  1. async fn one(mut self, db: &C) -> Result<Model, DbErr>
  2. 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.

@tyt2y3
Copy link
Member

tyt2y3 commented Feb 22, 2025

closed in favor of #2432

@tyt2y3 tyt2y3 closed this Feb 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

[ADD]: Addition of delete many
3 participants