We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Deleting data in a dataset requires a DatasetMigration in delete mode, which can be verbose and prone to syntax/arg mistakes.
We can simplify this with a .delete() method.
.delete()
Current
>>> my_dataset.query().filter(some_value=True).migrate(my_dataset, commit_mode='delete')
Proposed
>>> my_dataset.query().filter(some_value=True).delete()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deleting data in a dataset requires a DatasetMigration in delete mode, which can be verbose and prone to syntax/arg mistakes.
We can simplify this with a
.delete()
method.Current
Proposed
The text was updated successfully, but these errors were encountered: