()
| 8510 | |
| 8511 | #[cfg_attr(not(feature = "template-runner"), allow(dead_code))] |
| 8512 | fn default_initdb_args() -> Vec<&'static str> { |
| 8513 | vec![ |
| 8514 | "--allow-group-access", |
| 8515 | "--encoding", |
| 8516 | "UTF8", |
| 8517 | "--locale=C.UTF-8", |
| 8518 | "--locale-provider=libc", |
| 8519 | "--auth=trust", |
| 8520 | "-D", |
| 8521 | "/base", |
| 8522 | ] |
| 8523 | } |
| 8524 | |
| 8525 | fn default_initdb_profile() -> &'static str { |
| 8526 | "allow-group-access,encoding=UTF8,locale=C.UTF-8,locale-provider=libc,auth=trust" |
no outgoing calls
no test coverage detected