gt199899 commented on issue #7843:
URL:
https://github.com/apache/dolphinscheduler/issues/7843#issuecomment-1006312167
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?
--
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]