We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ed2ba commit 58dd5feCopy full SHA for 58dd5fe
2 files changed
src/lib.rs
@@ -1390,7 +1390,6 @@ impl<'stmt> PostgresRows<'stmt> {
1390
message: "COPY queries cannot be directly executed",
1391
},
1392
Sync]));
1393
- continue;
1394
}
1395
_ => {
1396
conn.desynchronized = true;
tests/test.rs
@@ -95,7 +95,7 @@ fn test_unix_connection() {
95
fail!("can't test connect_unix; unix_socket_directories is empty");
96
97
98
- let unix_socket_directory = unix_socket_directories[] .split(',').next().unwrap();
+ let unix_socket_directory = unix_socket_directories[].split(',').next().unwrap();
99
100
let url = format!("postgres://postgres@{}", url::encode_component(unix_socket_directory));
101
let conn = or_fail!(PostgresConnection::connect(url[], &NoSsl));
0 commit comments