Previously, when creating a table it was possible for identity columns to be missing sequence forward references. This would happen when a CREATE TABLE was used to create the identity columns. To address this, this patch adds validation to confirm that identity columns have sequence references. Additionally, an automated repair via post de-serialization is added to fix missing forward references.
Previously, when creating a table it was possible for identity columns to be missing sequence forward references. This would happen when a CREATE TABLE was used to create the identity columns. To address this, this patch adds validation to confirm that identity columns have sequence references. Additionally, an automated repair via post de-serialization is added to fix missing forward references.
Fixes: #131280
Release note: None