projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
344a055
)
Correct '=' to '==' in an assertion
author
Pavan Deolasee
<
[email protected]
>
Tue, 29 Dec 2015 08:31:57 +0000
(14:01 +0530)
committer
Pavan Deolasee
<
[email protected]
>
Tue, 29 Dec 2015 08:31:57 +0000
(14:01 +0530)
src/backend/pgxc/pool/execRemote.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/pgxc/pool/execRemote.c
b/src/backend/pgxc/pool/execRemote.c
index 31266eba1b0ae4ac347c1420cacccdb086953ac0..bf2ca7ccc2b7ea94e4739ca0ead874ab311c0bbd 100644
(file)
--- a/
src/backend/pgxc/pool/execRemote.c
+++ b/
src/backend/pgxc/pool/execRemote.c
@@
-2304,7
+2304,7
@@
prepare_err:
conn->ck_resp_rollback = false;
/* sanity checks */
Assert(conn->sock != NO_SOCKET);
- Assert(conn->state = DN_CONNECTION_STATE_IDLE);
+ Assert(conn->state =
=
DN_CONNECTION_STATE_IDLE);
/* Send down abort prepared command */
if (pgxc_node_send_gxid(conn, auxXid))
{