QuantumXiecao commented on issue #13577: URL: https://github.com/apache/dolphinscheduler/issues/13577#issuecomment-1435454353
@unnunique There has existed unique index at code and version. You could check your table index. In dolphinscheduler_mysql.sql: UNIQUE KEY `uniq_idx_code_version` (`code`,`version`) USING BTREE In dolphinscheduler_postgres.sql: create UNIQUE index uniq_idx_code_version on t_ds_process_definition_log (code,version); But I have noticed that your t_ds_process_definition_log existed two repeat records. So I suspect that you do not create index for your t_ds_process_definition_log table. -- 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]
