Dev-iL commented on code in PR #59218:
URL: https://github.com/apache/airflow/pull/59218#discussion_r2645325440
##########
airflow-core/src/airflow/utils/db.py:
##########
@@ -1236,7 +1372,7 @@ def _get_fab_migration_version(*, session: Session) ->
str | None:
return None
-def _handle_fab_downgrade(*, session: Session) -> None:
+def _handle_fab_downgrade(*, session: Session, is_mysql: bool) -> None:
Review Comment:
Fixed locally, changes will be visible on the next rebase.
##########
airflow-core/src/airflow/utils/db.py:
##########
@@ -685,12 +685,32 @@ def _create_db_from_orm(session):
log.info("Creating Airflow database tables from the ORM")
- # Debug setup if requested
_setup_debug_logging_if_needed()
- log.info("Creating context")
+ if get_dialect_name(session) == "mysql":
Review Comment:
Fixed locally, changes will be visible on the next rebase.
--
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]