mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-01 11:47:51 +08:00
[FIX-Bug #3845][Ambari Plugin] Start Ambari report an error: Table 't_ds_process_definition_version' already exists (#3846)
* [Bug][Ambari Plugin] Start Ambari report an error: Table 't_ds_process_definition_version' already exists #3845 * Revert "[Bug][Ambari Plugin] Start Ambari report an error: Table 't_ds_process_definition_version' already exists #3845" This reverts commit 56e030e6 * [Bug][Ambari Plugin] Start Ambari report an error: Table 't_ds_process_definition_version' already exists #3845
This commit is contained in:
parent
11d3c2cdaf
commit
42c88a7c68
@ -101,7 +101,7 @@ drop PROCEDURE if EXISTS ct_dolphin_T_t_ds_process_definition_version;
|
||||
delimiter d//
|
||||
CREATE PROCEDURE ct_dolphin_T_t_ds_process_definition_version()
|
||||
BEGIN
|
||||
CREATE TABLE `t_ds_process_definition_version` (
|
||||
CREATE TABLE IF NOT EXISTS `t_ds_process_definition_version` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
|
||||
`process_definition_id` int(11) NOT NULL COMMENT 'process definition id',
|
||||
`version` int(11) DEFAULT NULL COMMENT 'process definition version',
|
||||
|
Loading…
Reference in New Issue
Block a user