nick-msk-ai commented on issue #33688:
URL: https://github.com/apache/airflow/issues/33688#issuecomment-1700981687

   ```
   SELECT dag_run.state, dag_run.id, dag_run.dag_id, dag_run.queued_at, 
dag_run.execution_date, dag_run.start_date, dag_run.end_date, dag_run.run_id, 
dag_run.creating_job_id, dag_run.external_trigger, dag_run.run_type, 
dag_run.conf, dag_run.data_interval_start, dag_run.data_interval_end, 
dag_run.last_scheduling_decision, dag_run.dag_hash, dag_run.log_template_id, 
dag_run.updated_at
   FROM dag_run                                                                 
                                                                                
                                                                                
                                                                                
                                                                
   WHERE dag_run.dag_id = 'patient_lists' AND dag_run.execution_date < 
'2023-08-31T12:40:00+00:00'::timestamptz AND dag_run.state = 'success' ORDER BY 
dag_run.execution_date DESC                                                     
                                                                                
                                                                         
   ```
   
   @phanikumv 
   
   I'm not 100% but I think the query itself must be being dynamically 
generated in `airflow/api_connexion/endpoints/dag_run_endpoint.py`.


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