Database Import Problem Stopwords-Table Collation Error
-
Hello,
I exported my database to import the data into a new mysql-server.
I receive the error#1253 – COLLATION ‘utf8_bin’ is not valid for CHARACTER SET ‘utf8mb4’
The exported SQL statement is
CREATE TABLEwp_relevanssi_stopwords` (
stopwordvarchar(50) CHARACTER SET utf8mb4 COLLATE utf8_bin NOT NULL,
UNIQUE KEYstopword(stopword)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;`How can I change this to work?
It seems that the utf8_bin is not correct. I guess it should be “utf8mb4_bin”
Am I right? Why is this exported wrong? The error comes up after updating to the latest version today.
The topic ‘Database Import Problem Stopwords-Table Collation Error’ is closed to new replies.