We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Failed to create tables when initialing MySQL DB using mysql-schema.sql in AWS RDS Multi-AZ DB Cluster. Error message as below:
mysql-schema.sql
Unable to create or change a table without a primary key, when the system variable 'sql_require_primary_key' is set.
This is because sql_require_primary_key is set to true in MySQL cluster. But roles and permissions table have no primary key.
roles
permissions
Expected behavior Be able to init table successfully.
Actually behavior Failed to create table roles and permissions.
How to Reproduce Steps to reproduce the behavior:
Desktop (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Failed to create tables when initialing MySQL DB using
mysql-schema.sql
in AWS RDS Multi-AZ DB Cluster. Error message as below:This is because sql_require_primary_key is set to true in MySQL cluster. But
roles
andpermissions
table have no primary key.Expected behavior
Be able to init table successfully.
Actually behavior
Failed to create table
roles
andpermissions
.How to Reproduce
Steps to reproduce the behavior:
mysql-schema.sql
;mysql-schema.sql
;Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: