anmolxlight commented on code in PR #66674:
URL: https://github.com/apache/airflow/pull/66674#discussion_r3219979034
##########
providers/edge3/src/airflow/providers/edge3/models/db.py:
##########
@@ -61,6 +61,65 @@ class EdgeDBManager(BaseDBManager):
supports_table_dropping = True
revision_heads_map = _REVISION_HEADS_MAP
+ def _has_existing_manager_tables(self) -> bool:
Review Comment:
Yes, same behavior. This duplication is intentional for provider
compatibility: the edge3 provider distribution is tested against older Airflow
3.x releases where these BaseDBManager helpers/upgrade handling are not
available yet. Keeping the local implementation lets the provider pass the
compat matrix while still behaving the same as current core. Once the provider
minimum Airflow version includes the parent implementation, this override can
be removed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]