Skip to content
Snippets Groups Projects
Commit 74a26a91 authored by Dai Dang Van's avatar Dai Dang Van
Browse files

Use utf8_general_ci collation as a default collation

Now, I see mariadb are using utf8_general_ci as a default collation.
- https://mariadb.com/kb/en/mariadb/supported-character-sets-and-collations/

This mean all of Devstack database will be created with utf8_general_ci collation,
so may be, one service/project can be deployed successfully via Devstack
but will be fail with Kolla deployment.

Therefore, we should use above default collation for Kolla-ansible.

Change-Id: Icbb6c15f536fc6986816c58f4fd68bfb95813e46
Closes-Bug: 1680783
parent 5869030d
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ binlog_format=ROW ...@@ -21,7 +21,7 @@ binlog_format=ROW
default-storage-engine=innodb default-storage-engine=innodb
innodb_autoinc_lock_mode=2 innodb_autoinc_lock_mode=2
collation-server = utf8_unicode_ci collation-server = utf8_general_ci
init-connect='SET NAMES utf8' init-connect='SET NAMES utf8'
character-set-server = utf8 character-set-server = utf8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment