(native: &NativePostgres)
| 2229 | } |
| 2230 | |
| 2231 | fn native_postgres_sqlx_options(native: &NativePostgres) -> PgConnectOptions { |
| 2232 | PgConnectOptions::new_without_pgpass() |
| 2233 | .host("127.0.0.1") |
| 2234 | .port(native.port) |
| 2235 | .username("postgres") |
| 2236 | .database("postgres") |
| 2237 | .ssl_mode(PgSslMode::Disable) |
| 2238 | } |
| 2239 | |
| 2240 | fn perf_pglite_nodefs_sqlx(args: &[String]) -> Result<()> { |
| 2241 | let mut database_url: Option<String> = None; |
no test coverage detected