This is an automated email from the ASF dual-hosted git repository.
zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new d5485a1407 [Chore][CI] Hotfix ci error (#17082)
d5485a1407 is described below
commit d5485a140735fa9cf8d68b7e8cb5df0d2609b05c
Author: xiangzihao <[email protected]>
AuthorDate: Tue Mar 25 11:08:43 2025 +0800
[Chore][CI] Hotfix ci error (#17082)
---
.../sql/upgrade/3.3.0_schema/postgresql/dolphinscheduler_ddl.sql | 7 +++++++
1 file changed, 7 insertions(+)
diff --git
a/dolphinscheduler-dao/src/main/resources/sql/upgrade/3.3.0_schema/postgresql/dolphinscheduler_ddl.sql
b/dolphinscheduler-dao/src/main/resources/sql/upgrade/3.3.0_schema/postgresql/dolphinscheduler_ddl.sql
index 22188d2fd7..6a0ffbb934 100644
---
a/dolphinscheduler-dao/src/main/resources/sql/upgrade/3.3.0_schema/postgresql/dolphinscheduler_ddl.sql
+++
b/dolphinscheduler-dao/src/main/resources/sql/upgrade/3.3.0_schema/postgresql/dolphinscheduler_ddl.sql
@@ -197,6 +197,13 @@ ALTER INDEX
"process_task_relation_idx_pre_task_code_version" RENAME TO "workflo
ALTER INDEX "process_task_relation_idx_project_code_process_definition_code"
RENAME TO "workflow_task_relation_idx_project_code_workflow_definition_cod";
ALTER INDEX "process_task_relation_log_idx_project_code_process_definition_c"
RENAME TO "workflow_task_relation_log_idx_project_code_workflow_definition";
+ALTER TABLE "t_ds_relation_workflow_instance" RENAME CONSTRAINT
"t_ds_relation_process_instance_pkey" TO "t_ds_relation_workflow_instance_pkey";
+ALTER TABLE "t_ds_workflow_definition" RENAME CONSTRAINT
"t_ds_process_definition_pkey" TO "t_ds_workflow_definition_pkey";
+ALTER TABLE "t_ds_workflow_definition_log" RENAME CONSTRAINT
"t_ds_process_definition_log_pkey" TO "t_ds_workflow_definition_log_pkey";
+ALTER TABLE "t_ds_workflow_instance" RENAME CONSTRAINT
"t_ds_process_instance_pkey" TO "t_ds_workflow_instance_pkey";
+ALTER TABLE "t_ds_workflow_task_relation" RENAME CONSTRAINT
"t_ds_process_task_relation_pkey" TO "t_ds_workflow_task_relation_pkey";
+ALTER TABLE "t_ds_workflow_task_relation_log" RENAME CONSTRAINT
"t_ds_process_task_relation_log_pkey" TO "t_ds_workflow_task_relation_log_pkey";
+
END;
$$ LANGUAGE plpgsql;
d//