reele commented on code in PR #15289: URL: https://github.com/apache/dolphinscheduler/pull/15289#discussion_r1417139560
########## dolphinscheduler-dao/src/main/resources/sql/upgrade/3.2.1_schema/mysql/dolphinscheduler_ddl.sql: ########## @@ -102,4 +102,8 @@ delimiter ; CALL drop_t_ds_k8s_namespace_col_pod_request_memory; DROP PROCEDURE drop_t_ds_k8s_namespace_col_pod_request_memory; -ALTER TABLE `t_ds_project_parameter` MODIFY COLUMN `param_value` text NOT NULL COMMENT 'project parameter value'; \ No newline at end of file + +ALTER TABLE `t_ds_project_parameter` MODIFY COLUMN `param_value` text NOT NULL COMMENT 'project parameter value'; + +CREATE INDEX IF NOT EXISTS idx_pid_code_end_time ON t_ds_task_instance (process_instance_id, task_code, end_time); +ANALYZE TABLE t_ds_task_instance; Review Comment: All DDL changes have been reverted. @SbloodyS -- 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]
