You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/01/07 09:18:09 UTC

[GitHub] [dolphinscheduler] steeeeps commented on issue #7843: [Bug] [API] Create process response error

steeeeps commented on issue #7843:
URL: https://github.com/apache/dolphinscheduler/issues/7843#issuecomment-1007253529


   > For now, after add some seq, it work
   > 
   > ```
   > create sequence t_ds_task_definition_id_sequence increment by 1 minvalue 1 no maxvalue start with 1;
   > alter table t_ds_task_definition alter column id set default nextval('t_ds_task_definition_id_sequence');
   > 
   > 
   > create sequence t_ds_task_definition_log_id_sequence increment by 1 minvalue 1 no maxvalue start with 1;
   > alter table t_ds_task_definition_log alter column id set default nextval('t_ds_task_definition_log_id_sequence');
   > 
   > 
   > create sequence t_ds_process_definition_log_id_sequence increment by 1 minvalue 1 no maxvalue start with 1;
   > alter table t_ds_process_definition_log alter column id set default nextval('t_ds_process_definition_log_id_sequence');
   > 
   > 
   > create sequence t_ds_process_task_relation_id_sequence increment by 1 minvalue 1 no maxvalue start with 1;
   > alter table t_ds_process_task_relation alter column id set default nextval('t_ds_process_task_relation_id_sequence');
   > 
   > 
   > create sequence t_ds_process_task_relation_log_id_sequence increment by 1 minvalue 1 no maxvalue start with 1;
   > alter table t_ds_process_task_relation_log alter column id set default nextval('t_ds_process_task_relation_log_id_sequence');
   > ```
   > 
   > Is the creation of seq missing when the database is initialized?
   
   hi, can you tell me how to execute these SQL codes ? thank you very much.


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org