-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrator fails when creating UNIQUE indexes because it attempts to create them twice #43
Comments
philip-stoev
changed the title
UNIQUE indexes created twice
Migrator fails when creating UNIQUE indexes because it attempts to create them twice
Aug 28, 2018
Stack trace:
Related internal JIRA DB-22857 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The backup.cat contains the following:
This causes migrator to generate the following DDL:
Which fails because we do not allow multiple identical indexes on the same table. MIgrator should have only created a single index, so either use the UNIQUE keyword in CREATE TABLE or use CREATE UNIQUE INDEX, but not both.
The entire dump directory is available from
bidata:///space/builds/nuo_datasets/SubDBdump.tar.gz
The text was updated successfully, but these errors were encountered: