refactor: migrate sql增加超时时间。

This commit is contained in:
liqiang-fit2cloud 2023-01-30 14:18:48 +08:00
parent c9ef324876
commit 4722fe2508
3 changed files with 8 additions and 2 deletions

View File

@ -92,3 +92,5 @@ update test_plan_api_case set `status` ='STOPPED' where `status` = 'STOP';
update test_plan_api_case set `status` ='FAKE_ERROR' where `status` in ('errorReportResult','errorReport');
-- 执行中
update test_plan_api_case set `status` ='RUNNING' where `status` = 'Running';
SET SESSION innodb_lock_wait_timeout = DEFAULT;

View File

@ -22,4 +22,6 @@ ALTER TABLE api_case_execution_info ADD INDEX idx_execute_type(execute_type);
ALTER TABLE scenario_execution_info ADD INDEX idx_version ( version );
ALTER TABLE scenario_execution_info ADD INDEX idx_project_id(project_id);
ALTER TABLE scenario_execution_info ADD INDEX idx_execute_type(execute_type);
ALTER TABLE scenario_execution_info ADD INDEX idx_execute_type(execute_type);
SET SESSION innodb_lock_wait_timeout = DEFAULT;

View File

@ -12,4 +12,6 @@ SELECT IF(EXISTS(SELECT DISTINCT index_name
INTO @a;
PREPARE stmt1 FROM @a;
EXECUTE stmt1;
DEALLOCATE PREPARE stmt1;
DEALLOCATE PREPARE stmt1;
SET SESSION innodb_lock_wait_timeout = DEFAULT;