Browse Source

Fix that when the timing data is not configured with environmental information, the timing management does not display the data. (#13339)

Fix-minio-version-in-helm-chart
Kerwin 1 year ago committed by GitHub
parent
commit
fde2c8073e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ScheduleMapper.xml

2
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ScheduleMapper.xml

@ -37,7 +37,7 @@
join t_ds_process_definition p_f on s.process_definition_code = p_f.code
join t_ds_project as p on p_f.project_code = p.code
join t_ds_user as u on s.user_id = u.id
join t_ds_environment as e on s.environment_code = e.code
left join t_ds_environment as e on s.environment_code = e.code
where 1=1
<if test="processDefinitionCode != 0">
and s.process_definition_code = #{processDefinitionCode}

Loading…
Cancel
Save