2 Answers
- Newest
- Most votes
- Most comments
1
Hi,
you should read https://dev.mysql.com/doc/refman/8.0/en/identifier-case-sensitivity.html
It will explain you the param lower_case_table_names
.
Then, you should see which values it has in your config before the upgrade and check if you specified it explicitly or not. You probably have the default value. Then, you should enforce this value as explicit before the upgrade and rerun the upgrade.
Maybe 5.7 and 5.8 have a different default value for this parameter creating your problem.
Best,
Didier
Relevant content
- asked 4 years ago
- asked 9 months ago
- Accepted Answerasked 2 years ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
Thank you. I solved this problem. This is becuase there's no default value for the 'lower_case_table_names' in the target parameter group of v8.0. After I set it to 1 as the same as the it is in the v5.7, then I got success.
Yes, good move!