Remove weird continue
This commit is contained in:
parent
e5ed2ba96e
commit
58dd5fe12b
@ -1390,7 +1390,6 @@ impl<'stmt> PostgresRows<'stmt> {
|
||||
message: "COPY queries cannot be directly executed",
|
||||
},
|
||||
Sync]));
|
||||
continue;
|
||||
}
|
||||
_ => {
|
||||
conn.desynchronized = true;
|
||||
|
@ -95,7 +95,7 @@ fn test_unix_connection() {
|
||||
fail!("can't test connect_unix; unix_socket_directories is empty");
|
||||
}
|
||||
|
||||
let unix_socket_directory = unix_socket_directories[] .split(',').next().unwrap();
|
||||
let unix_socket_directory = unix_socket_directories[].split(',').next().unwrap();
|
||||
|
||||
let url = format!("postgres://postgres@{}", url::encode_component(unix_socket_directory));
|
||||
let conn = or_fail!(PostgresConnection::connect(url[], &NoSsl));
|
||||
|
Loading…
Reference in New Issue
Block a user