mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 22:44:17 +00:00
Do not do compile-time checks on pg socket
This commit is contained in:
parent
0ccfab1f25
commit
bcc42644e6
1 changed files with 0 additions and 10 deletions
|
@ -221,21 +221,11 @@ impl PgConnectOptions {
|
|||
/// switching the connection method from TCP to the corresponding socket.
|
||||
///
|
||||
/// By default set to `None`.
|
||||
#[cfg(unix)]
|
||||
pub fn socket(mut self, path: impl AsRef<Path>) -> Self {
|
||||
self.socket = Some(path.as_ref().to_path_buf());
|
||||
self
|
||||
}
|
||||
|
||||
/// Sets a custom path to a directory containing a unix domain socket,
|
||||
/// switching the connection method from TCP to the corresponding socket.
|
||||
///
|
||||
/// By default set to `None`.
|
||||
#[cfg(not(unix))]
|
||||
pub fn socket(mut self, _: impl AsRef<Path>) -> Self {
|
||||
self
|
||||
}
|
||||
|
||||
/// Sets the username to connect as.
|
||||
///
|
||||
/// Defaults to be the same as the operating system name of
|
||||
|
|
Loading…
Reference in a new issue