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 b5d8844 commit 0137a2eCopy full SHA for 0137a2e
postgresql_embedded/src/command/psql.rs
@@ -269,7 +269,7 @@ impl PsqlBuilder {
269
self
270
}
271
272
- /// database user name
+ /// user password
273
pub fn pg_password<S: AsRef<OsStr>>(mut self, pg_password: S) -> Self {
274
self.pg_password = Some(pg_password.as_ref().to_os_string());
275
@@ -448,6 +448,7 @@ impl CommandBuilder for PsqlBuilder {
448
args
449
450
451
+ /// Get the environment variables for the command
452
fn get_envs(&self) -> Vec<(OsString, OsString)> {
453
let mut envs: Vec<(OsString, OsString)> = Vec::new();
454
0 commit comments