Migrate spam_db to InnoDB and utf8mb4 #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Tr0n/web:feat/spam-db-innodb"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
How to test:
spam_db
tableINSERT INTO common.spam_db (
type,word,score) VALUES ('SPAM','spam',50);
I've tested the change using regular roman characters and with German umlauts (ö) which worked flawlessly.
No changes in client/server source necessary.
One drawback is that due to a limitation from MySQL < 5.7 the max length of spam words had to be reduced from 256 to 191 characters.
Oh, I think the 191 character limit is what made me leave that on MyISAM! That should explain it. At any rate, I tested this and it works flawlessly.