-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
Remove Provider Deprecations in Sqlite #44707
Remove Provider Deprecations in Sqlite #44707
Conversation
Can you please also update the docs? https://github.com/apache/airflow/blob/main/docs/apache-airflow-providers-sqlite/operators.rst?plain=1#L20 |
fcb0f35
to
71df393
Compare
71df393
to
1bcc328
Compare
@pytest.mark.backend("sqlite") | ||
class TestSqliteOperator: |
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.
I wonder if we need to keep these tests?
How do we know SQLExecuteQueryOperator works with sqlite backend if we remove these?
Do we have this coverage elsewhere?
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.
We have pytests for SQLExecuteQueryOperator
and these tests are executed against all DBs we support. I did not check in detail but if you think DB tests are missing... we should add it there.
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.
I will check this
In Airflow 3 Dev Call we discussed and made a LAZY CONSENSUS to remove all deprecation's in providers prior 2.11 release in https://lists.apache.org/thread/lhy7zhz8yxo3jjpln0ds8ogszgb9b469.
This PR is for the provider Sqlite
Relates to #44559