Update for * -> *const changes
This commit is contained in:
parent
dba7778721
commit
a9ec2a21e6
@ -12,7 +12,7 @@ path = "src/lib.rs"
|
|||||||
[dependencies.openssl]
|
[dependencies.openssl]
|
||||||
|
|
||||||
git = "https://github.com/sfackler/rust-openssl"
|
git = "https://github.com/sfackler/rust-openssl"
|
||||||
rev = "bfd8fa2d4c494b1dbbaf6a57ee195cd8c8c0ab76"
|
rev = "8c40c2ef3527fbcf22f11a517422b371b4626852"
|
||||||
|
|
||||||
[dependencies.phf_mac]
|
[dependencies.phf_mac]
|
||||||
|
|
||||||
|
@ -1081,7 +1081,7 @@ impl<'conn> PostgresTransaction<'conn> {
|
|||||||
row_limit: i32)
|
row_limit: i32)
|
||||||
-> PostgresResult<PostgresLazyRows
|
-> PostgresResult<PostgresLazyRows
|
||||||
<'trans, 'stmt>> {
|
<'trans, 'stmt>> {
|
||||||
if self.conn as *_ != stmt.conn as *_ {
|
if self.conn as *const _ != stmt.conn as *const _ {
|
||||||
return Err(PgWrongConnection);
|
return Err(PgWrongConnection);
|
||||||
}
|
}
|
||||||
check_desync!(self.conn);
|
check_desync!(self.conn);
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 5fb236128c4c552ace49c2d1f72a8996ee8d05d6
|
Subproject commit 8c40c2ef3527fbcf22f11a517422b371b4626852
|
Loading…
Reference in New Issue
Block a user