Dear all,
I am using MariaDB with Ubuntu 18.
mysql Ver 15.1 Distrib 10.3.22-MariaDB
When following the installation instructions, at some point I have to create a database using the following command:
sudo mysql -h localhost -u root -p -e "CREATE DATABASE atomtest CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;"
I get the following error:
ERROR 1273 (HY000) at line 1: Unknown collation: 'utf8mb4_0900_ai_ci'
I think this might be a compatibility issue with Maria DB.
if I change the end of the string to this: "utf8 COLLATE utf8_unicode_ci;"
Then, i can create the database the problem is that I am not sue if this will cause other compatibility issues.
Is this workaround OK or should we have to switch over from MariaDB to MySQL?
Thanks!
Daniel