EricPyZhou commented on issue #6336: URL: https://github.com/apache/dolphinscheduler/issues/6336#issuecomment-930689951
Updates on this issue. @ruanwenjun 1. tests are all failed at line 69 because the processInstance object here does not have the attribute `processDefinitionCode`, and the field `process_definition_code` is NOT NULL. Therefore my solution is to add the default value to the field.  2. I am not sure where to put SQL ALTER TABLE t_ds_process_instance MODIFY COLUMN `process_definition_code` bigint(20) not NULL COMMENT 'process definition code' AFTER `worker_group`; Should I put it into sql/upgrade/1.4.0_scheme/mysql/dolphinscheduler_ddl.sql? or just modify directly in dolphinscheduler_mysql.sql?  -- 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]
