qingwli commented on code in PR #14406: URL: https://github.com/apache/dolphinscheduler/pull/14406#discussion_r1244767218
########## dolphinscheduler-dao/src/main/resources/sql/upgrade/3.2.0_schema/mysql/dolphinscheduler_dml.sql: ########## @@ -37,3 +37,48 @@ DROP PROCEDURE dolphin_t_ds_tenant_insert_default; -- tenant improvement UPDATE t_ds_schedules t1 JOIN t_ds_process_definition t2 ON t1.process_definition_code = t2.code LEFT JOIN t_ds_tenant t3 ON t2.tenant_id = t3.id SET t1.tenant_code = COALESCE(t3.tenant_code, 'default'); UPDATE `t_ds_process_instance` SET `tenant_code` = 'default' WHERE `tenant_code` IS NULL; + +-- data quality support choose database +INSERT IGNORE INTO `t_ds_dq_rule_input_entry` Review Comment: I can do this but I think it is not necessary, because like tenant user has a UI to manage this. But for data quality, the data is config by ds'sql and there is no UI to manage this table's data. It's hard to have conflicts. WDYT? -- 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]
