Change default charset to utf8 and default collation order to
utf8_unicode_ci to align with upstream defaults.
Change-Id: I0fb57f14a0d30226c840a6e920f2b3807b90080a
Closes-Bug: #
1322715
# Optional. Defaults to undef.
#
# [*charset*]
-# the database charset. Optional. Defaults to 'latin1'
+# the database charset. Optional. Defaults to 'utf8'
#
# [*collate*]
-# the database collation. Optional. Defaults to 'latin1_swedish_ci'
+# the database collation. Optional. Defaults to 'utf8_unicode_ci'
#
# [*mysql_module*]
# (optional) Mysql module version to use. Tested versions
$user = 'ceilometer',
$host = 'localhost',
$allowed_hosts = undef,
- $charset = 'latin1',
- $collate = 'latin1_swedish_ci',
+ $charset = 'utf8',
+ $collate = 'utf8_unicode_ci',
$mysql_module = '0.9',
) {
:dbname => 'ceilometer',
:user => 'ceilometer',
:host => 'localhost',
- :charset => 'latin1',
- :collate => 'latin1_swedish_ci',
+ :charset => 'utf8',
+ :collate => 'utf8_unicode_ci',
:mysql_module => '0.9',
}
end