We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3afd693 commit 0c5c270Copy full SHA for 0c5c270
manifests/database/postgresql.pp
@@ -149,6 +149,8 @@
149
postgresql::server::db { $database_name:
150
user => $database_username,
151
password => $database_password,
152
+ encoding => 'UTF8',
153
+ locale => 'en_US.UTF-8',
154
grant => 'all',
155
port => $port,
156
}
spec/unit/classes/database/postgresql_spec.rb
@@ -62,6 +62,8 @@
62
password: params[:database_password],
63
grant: 'all',
64
port: params[:database_port].to_i,
65
+ encoding: 'UTF8',
66
+ locale: 'en_US.UTF-8',
67
)
68
69
0 commit comments