Add S3TablesDeleteTableOperator#66019
Merged
vincbeck merged 1 commit intoapache:mainfrom Apr 29, 2026
Merged
Conversation
vincbeck
reviewed
Apr 28, 2026
bed6d9b to
8863096
Compare
vincbeck
reviewed
Apr 28, 2026
8863096 to
f5f8ab2
Compare
- New operator to delete tables from S3 Tables namespaces - Supports optional version_token for optimistic concurrency - Uses prune_dict and aws_template_fields patterns - System test updated to use operator instead of raw @task - Unit tests and docs included
f5f8ab2 to
adfc3d2
Compare
vincbeck
approved these changes
Apr 28, 2026
seruman
pushed a commit
to seruman/airflow
that referenced
this pull request
Apr 30, 2026
79 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add a delete operator to complement the merged
S3TablesCreateTableOperator(#65816).How
S3TablesDeleteTableOperatorusingAwsBaseOperator[AwsBaseHook]patternversion_tokenfor optimistic concurrency controlprune_dictandaws_template_fieldspatterns@taskwrapperFiles (4 modified)
operators/s3tables.py— addedS3TablesDeleteTableOperatortest_s3tables.py— added 3 delete testsexample_s3tables.py— replaced@task delete_tablewith operators3tables/s3tables.rst— added delete sectionTesting