Browse Source
* [improve] support test tasks * [improve] support test tasks * [improve] support test tasks * [improve] support test tasks * [improve] support test tasks * Update TaskExecuteThread.java * try solve e2e q * try solve e2e q * try solve e2e q * try solve e2e q * try solve e2e q * try solve e2e q * try solve e2e q * try solve e2e q * try solve e2e q * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * Update DataSource.java * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * Update messages_zh_CN.properties * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * Update messages.properties * Update messages_en_US.properties * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks * [Feature] support test tasks3.2.0-release
insist777
2 years ago
committed by
GitHub
85 changed files with 1089 additions and 224 deletions
@ -0,0 +1,122 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); |
||||
|
||||
-- uc_dolphin_T_t_ds_command_R_test_flag |
||||
drop PROCEDURE if EXISTS uc_dolphin_T_t_ds_command_R_test_flag; |
||||
delimiter d// |
||||
CREATE PROCEDURE uc_dolphin_T_t_ds_command_R_test_flag() |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_NAME='t_ds_command' |
||||
AND TABLE_SCHEMA=(SELECT DATABASE()) |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_command ADD `test_flag` tinyint(4) DEFAULT null COMMENT 'test flag:0 normal, 1 test run'; |
||||
END IF; |
||||
END; |
||||
|
||||
d// |
||||
|
||||
delimiter ; |
||||
CALL uc_dolphin_T_t_ds_command_R_test_flag; |
||||
DROP PROCEDURE uc_dolphin_T_t_ds_command_R_test_flag; |
||||
|
||||
-- uc_dolphin_T_t_ds_error_command_R_test_flag |
||||
drop PROCEDURE if EXISTS uc_dolphin_T_t_ds_error_command_R_test_flag; |
||||
delimiter d// |
||||
CREATE PROCEDURE uc_dolphin_T_t_ds_error_command_R_test_flag() |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_NAME='t_ds_error_command' |
||||
AND TABLE_SCHEMA=(SELECT DATABASE()) |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_error_command ADD `test_flag` tinyint(4) DEFAULT null COMMENT 'test flag:0 normal, 1 test run'; |
||||
END IF; |
||||
END; |
||||
|
||||
d// |
||||
|
||||
delimiter ; |
||||
CALL uc_dolphin_T_t_ds_error_command_R_test_flag; |
||||
DROP PROCEDURE uc_dolphin_T_t_ds_error_command_R_test_flag; |
||||
|
||||
-- uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id |
||||
drop PROCEDURE if EXISTS uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id; |
||||
delimiter d// |
||||
CREATE PROCEDURE uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id() |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_NAME='t_ds_datasource' |
||||
AND TABLE_SCHEMA=(SELECT DATABASE()) |
||||
AND COLUMN_NAME ='test_flag') |
||||
and NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_NAME='t_ds_datasource' |
||||
AND TABLE_SCHEMA=(SELECT DATABASE()) |
||||
AND COLUMN_NAME ='bind_test_id') |
||||
THEN |
||||
ALTER TABLE t_ds_datasource ADD `test_flag` tinyint(4) DEFAULT null COMMENT 'test flag:0 normal, 1 testDataSource'; |
||||
ALTER TABLE t_ds_datasource ADD `bind_test_id` int DEFAULT null COMMENT 'bind testDataSource id'; |
||||
END IF; |
||||
END; |
||||
|
||||
d// |
||||
|
||||
delimiter ; |
||||
CALL uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id; |
||||
DROP PROCEDURE uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id; |
||||
|
||||
-- uc_dolphin_T_t_ds_process_instance_R_test_flag |
||||
drop PROCEDURE if EXISTS uc_dolphin_T_t_ds_process_instance_R_test_flag; |
||||
delimiter d// |
||||
CREATE PROCEDURE uc_dolphin_T_t_ds_process_instance_R_test_flag() |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_NAME='t_ds_process_instance' |
||||
AND TABLE_SCHEMA=(SELECT DATABASE()) |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_process_instance ADD `test_flag` tinyint(4) DEFAULT null COMMENT 'test flag:0 normal, 1 test run'; |
||||
END IF; |
||||
END; |
||||
|
||||
d// |
||||
|
||||
delimiter ; |
||||
CALL uc_dolphin_T_t_ds_process_instance_R_test_flag; |
||||
DROP PROCEDURE uc_dolphin_T_t_ds_process_instance_R_test_flag; |
||||
|
||||
-- uc_dolphin_T_t_ds_task_instance_R_test_flag |
||||
drop PROCEDURE if EXISTS uc_dolphin_T_t_ds_task_instance_R_test_flag; |
||||
delimiter d// |
||||
CREATE PROCEDURE uc_dolphin_T_t_ds_task_instance_R_test_flag() |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_NAME='t_ds_task_instance' |
||||
AND TABLE_SCHEMA=(SELECT DATABASE()) |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_task_instance ADD `test_flag` tinyint(4) DEFAULT null COMMENT 'test flag:0 normal, 1 test run'; |
||||
END IF; |
||||
END; |
||||
|
||||
d// |
||||
|
||||
delimiter ; |
||||
CALL uc_dolphin_T_t_ds_task_instance_R_test_flag; |
||||
DROP PROCEDURE uc_dolphin_T_t_ds_task_instance_R_test_flag; |
@ -0,0 +1,16 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
@ -0,0 +1,121 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
-- uc_dolphin_T_t_ds_command_R_test_flag |
||||
delimiter ; |
||||
DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_command_R_test_flag(); |
||||
delimiter d// |
||||
CREATE FUNCTION uc_dolphin_T_t_ds_command_R_test_flag() RETURNS void AS $$ |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_CATALOG=current_database() |
||||
AND TABLE_SCHEMA=current_schema() |
||||
AND TABLE_NAME='t_ds_command' |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_command alter column test_flag type int DEFAULT NULL; |
||||
END IF; |
||||
END; |
||||
$$ LANGUAGE plpgsql; |
||||
d// |
||||
delimiter ; |
||||
select uc_dolphin_T_t_ds_command_R_test_flag(); |
||||
DROP FUNCTION uc_dolphin_T_t_ds_command_R_test_flag(); |
||||
|
||||
-- uc_dolphin_T_t_ds_error_command_R_test_flag |
||||
delimiter ; |
||||
DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_error_command_R_test_flag(); |
||||
delimiter d// |
||||
CREATE FUNCTION uc_dolphin_T_t_ds_error_command_R_test_flag() RETURNS void AS $$ |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_CATALOG=current_database() |
||||
AND TABLE_SCHEMA=current_schema() |
||||
AND TABLE_NAME='t_ds_error_command' |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_error_command alter column test_flag type int DEFAULT NULL; |
||||
END IF; |
||||
END; |
||||
$$ LANGUAGE plpgsql; |
||||
d// |
||||
delimiter ; |
||||
select uc_dolphin_T_t_ds_error_command_R_test_flag(); |
||||
DROP FUNCTION uc_dolphin_T_t_ds_error_command_R_test_flag(); |
||||
|
||||
-- uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id |
||||
delimiter ; |
||||
DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id(); |
||||
delimiter d// |
||||
CREATE FUNCTION uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id() RETURNS void AS $$ |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_CATALOG=current_database() |
||||
AND TABLE_SCHEMA=current_schema() |
||||
AND TABLE_NAME='t_ds_datasource' |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_datasource alter column test_flag type int DEFAULT NULL; |
||||
ALTER TABLE t_ds_datasource alter column bind_test_id type int DEFAULT NULL; |
||||
END IF; |
||||
END; |
||||
$$ LANGUAGE plpgsql; |
||||
d// |
||||
delimiter ; |
||||
select uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id(); |
||||
DROP FUNCTION uc_dolphin_T_t_ds_datasource_R_test_flag_bind_test_id(); |
||||
|
||||
-- uc_dolphin_T_t_ds_process_instance_R_test_flag |
||||
delimiter ; |
||||
DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_instance_R_test_flag(); |
||||
delimiter d// |
||||
CREATE FUNCTION uc_dolphin_T_t_ds_process_instance_R_test_flag() RETURNS void AS $$ |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_CATALOG=current_database() |
||||
AND TABLE_SCHEMA=current_schema() |
||||
AND TABLE_NAME='t_ds_process_instance' |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_process_instance alter column test_flag type int DEFAULT NULL; |
||||
END IF; |
||||
END; |
||||
$$ LANGUAGE plpgsql; |
||||
d// |
||||
delimiter ; |
||||
select uc_dolphin_T_t_ds_process_instance_R_test_flag(); |
||||
DROP FUNCTION uc_dolphin_T_t_ds_process_instance_R_test_flag(); |
||||
|
||||
-- uc_dolphin_T_t_ds_task_instance_R_test_flag |
||||
delimiter ; |
||||
DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_R_test_flag(); |
||||
delimiter d// |
||||
CREATE FUNCTION uc_dolphin_T_t_ds_task_instance_R_test_flag() RETURNS void AS $$ |
||||
BEGIN |
||||
IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS |
||||
WHERE TABLE_CATALOG=current_database() |
||||
AND TABLE_SCHEMA=current_schema() |
||||
AND TABLE_NAME='t_ds_task_instance' |
||||
AND COLUMN_NAME ='test_flag') |
||||
THEN |
||||
ALTER TABLE t_ds_task_instance alter column test_flag type int DEFAULT NULL; |
||||
END IF; |
||||
END; |
||||
$$ LANGUAGE plpgsql; |
||||
d// |
||||
delimiter ; |
||||
select uc_dolphin_T_t_ds_task_instance_R_test_flag(); |
||||
DROP FUNCTION uc_dolphin_T_t_ds_task_instance_R_test_flag(); |
@ -0,0 +1,29 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
delimiter d// |
||||
|
||||
return 'Success!'; |
||||
exception when others then |
||||
---Raise EXCEPTION '(%)',SQLERRM; |
||||
return SQLERRM; |
||||
END; |
||||
$BODY$; |
||||
|
||||
select dolphin_insert_dq_initial_data(); |
||||
|
||||
d// |
@ -0,0 +1,45 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import {h} from "vue"; |
||||
import {NTag} from "naive-ui"; |
||||
|
||||
export function renderEnvironmentalDistinctionCell( |
||||
testFlag: number | undefined, |
||||
t: Function |
||||
) { |
||||
if (testFlag === 0) { |
||||
return h( |
||||
NTag, |
||||
{ type: 'success', size: 'small' }, |
||||
{ |
||||
default: () => t('datasource.on_line') |
||||
} |
||||
) |
||||
} else if (testFlag === 1) { |
||||
return h( |
||||
NTag, |
||||
{ type: 'warning', size: 'small' }, |
||||
{ |
||||
default: () => t('datasource.test') |
||||
} |
||||
) |
||||
} else { |
||||
return '-' |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue