The GitHub Actions job "Tests" on airflow.git/remove-deprecated-sqlalchemy-query has failed. Run started by GitHub user Arunodoy18 (triggered by potiuk).
Head commit for run: 03c4ebfcecb9a1ecc6409d98fd8dfb428f862300 / Arunodoy18 <[email protected]> Complete SQLAlchemy 2.0 migration for scheduler jobs module - Converted ALL remaining deprecated session.query() patterns to select() API - Fixed 70+ occurrences total in test_scheduler_job.py - Fixed 2 occurrences in scheduler_job_runner.py - Updated pre-commit config to enforce SQLAlchemy 2.0 style - Added 'delete' import for delete() operations Migration patterns applied: - session.query(Model).filter() session.scalars(select(Model).where()) - session.query(Model).first/one/all() session.scalars(select(Model)).first/one/all() - session.query(func.count()).scalar() session.scalar(select(func.count())) - session.query(Model).count() session.scalar(select(func.count()).select_from(Model)) - session.query(Model).delete() session.execute(delete(Model)) - Multiline queries with .filter().scalar() Corresponding .where() patterns All deprecated Query API usage removed from jobs module. Report URL: https://github.com/apache/airflow/actions/runs/20206744488 With regards, GitHub Actions via GitBox --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
