Restoring data in Version 14

Why when restoring data in version 14 using bench command always starting with

Restoring Database file...
SETVAL(`crm_note_id_seq`, 1, 0)
1
SETVAL(`prospect_opportunity_id_seq`, 1, 0)
1
SETVAL(`web_form_list_column_id_seq`, 1, 0)
1

Are there any issue in this restore or this is normal process in version 14

Hey that seems to be normal …we’ve added sequences in v14 for Auto-Increment naming hence while restoring it shows those SETVAL statements as mariadb needs to set the sequence value upon restore for every sequence created.

1 Like

Thank you