Closed
Description
Hi,
This is happened during auto creation of new range partition.
This issue is caused by using new name of the sequence. So if parent table renamed then naming sequence should be renamed as well.
It is possible to fix this manualy with ALTER SEQUENCE <old_parent_table_name_seq> RENAME TO <new_parent_table_name_seq>;
Thank you.