[ISSUE-598]Fix start_time not set when create reassign job in MySQL-8 (#623)

[ISSUE-598]Fix start_time not set when create reassign job in MySQL-8 (#623 )
This commit is contained in:
EricZeng
2022-09-28 10:26:56 +08:00
committed by GitHub

View File

@@ -19,8 +19,8 @@
<insert id="addAndSetId" parameterType="com.xiaojukeji.know.streaming.km.common.bean.po.reassign.ReassignJobPO">
INSERT INTO ks_km_reassign_job
(id, cluster_phy_id, reassignment_json, description, throttle_unit_byte, start_time, finished_time, creator, status)
(id, cluster_phy_id, reassignment_json, description, throttle_unit_byte, creator, status)
VALUES
(#{id}, #{clusterPhyId}, #{reassignmentJson}, #{description}, #{throttleUnitByte}, #{startTime}, #{finishedTime}, #{creator}, #{status})
(#{id}, #{clusterPhyId}, #{reassignmentJson}, #{description}, #{throttleUnitByte}, #{creator}, #{status})
</insert>
</mapper>