kjh0623 commented on PR #70113:
URL: https://github.com/apache/airflow/pull/70113#issuecomment-5021464348

   The failing "Tests (AMD)" job is not related to this change — it's a 
CI/MySQL DB-init issue, not a real test failure.
   
   All 12 failures are `ERROR at setup`, i.e. the test DB never initialized. 
Root cause:
   
   ```
   (1419, 'You do not have the SUPER privilege and binary logging is enabled
           (you might want to use the less safe log_bin_trust_function_creators 
variable)')
   ```
   
   Migration `0042_..._add_uuid_primary_key_to_task_instance` fails to `CREATE 
FUNCTION uuid_generate_v7` because the MySQL user lacks SUPER and 
`log_bin_trust_function_creators` isn't enabled. Every subsequent `UPDATE 
task_instance SET id = uuid_generate_v7(...)` then fails with `(1305) FUNCTION 
airflow.uuid_generate_v7 does not exist`, cascading into all 12 setup errors. 
None of the failing tests touch the scheduler code in this PR.
   
   Could a committer please re-run the failed jobs? 🙏
   


-- 
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]

Reply via email to