Browse Source

[Bug][Alert]batchInsert execption #14686 (#14687)

Signed-off-by: Gallardot <gallardot@apache.org>
Co-authored-by: xiangzihao <460888207@qq.com>
augit-log
Gallardot 10 months ago committed by GitHub
parent
commit
a5f5aacb5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/AlertSendStatusMapper.xml

7
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/AlertSendStatusMapper.xml

@ -22,14 +22,13 @@
<insert id="batchInsert">
insert into t_ds_alert_send_status (alert_id, alert_plugin_instance_id, send_status, log, create_time)
values
<foreach collection="alertSendStatuses" item="alertSendStatus" separator="," open="(" close=")">
#{alertSendStatus.alertId},
<foreach collection="alertSendStatuses" item="alertSendStatus" separator=",">
(#{alertSendStatus.alertId},
#{alertSendStatus.alertPluginInstanceId},
#{alertSendStatus.sendStatus},
#{alertSendStatus.log},
#{alertSendStatus.createTime}
#{alertSendStatus.createTime})
</foreach>
</insert>
<delete id="deleteByAlertIds">

Loading…
Cancel
Save