Browse Source

The node ID under serial is greater than the current ID. (#9820)

Co-authored-by: WangJPLeo <wangjipeng@whaleops.com>
3.0.0/version-upgrade
WangJPLeo 3 years ago committed by GitHub
parent
commit
ab2d535e54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.xml

4
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.xml

@ -250,8 +250,8 @@
from t_ds_process_instance
where process_definition_code=#{processDefinitionCode}
and state = #{state}
and id <![CDATA[ < ]]> #{id}
order by id desc limit 1
and id <![CDATA[ > ]]> #{id}
order by id asc limit 1
</select>
<update id="updateGlobalParamsById">
update t_ds_process_instance

Loading…
Cancel
Save