Hi. After updating to msyql 8 reports reporting an illegal collation error between utf8mb4_general_ci and utf8mb4_0900_ai_ci which was introduced in mysql 8. The problem seems to be caused because the mysql client connect (mysqli/pdo) is not setting a collation and thus it defaults to utf8mb4_0900_ai_ci - but with tables and fields all utf8mb4_general_ci - this raises an error. See details at https://www.percona.com/blog/differing-mysql-client-versions-causing-broken-replication-and-collations-in-aurora/
Is there a way to set the client connection collation from mydbr to be utf8mb4_general_ci?