diff --git a/manifests/db/mysql.pp b/manifests/db/mysql.pp index a20bc5ec..6748de82 100644 --- a/manifests/db/mysql.pp +++ b/manifests/db/mysql.pp @@ -47,7 +47,7 @@ # # [*collate*] # (optional) Charset collate of trove database -# Defaults 'utf8_unicode_ci'. +# Defaults 'utf8_general_ci'. # # [*mysql_module*] # (optional) Deprecated. Does nothing @@ -59,7 +59,7 @@ class trove::db::mysql( $host = '127.0.0.1', $allowed_hosts = undef, $charset = 'utf8', - $collate = 'utf8_unicode_ci', + $collate = 'utf8_general_ci', $mysql_module = undef, ) { diff --git a/spec/classes/trove_db_mysql_spec.rb b/spec/classes/trove_db_mysql_spec.rb index b42de635..c55b1a9e 100644 --- a/spec/classes/trove_db_mysql_spec.rb +++ b/spec/classes/trove_db_mysql_spec.rb @@ -31,7 +31,7 @@ describe 'trove::db::mysql' do :password => 's3cr3t', :user => 'trove', :charset => 'utf8', - :collate => 'utf8_unicode_ci', + :collate => 'utf8_general_ci', :host => '127.0.0.1', } end