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:
de00d24
)
fix calls to tuplesort_gettupleslot() from execRemote.c
author
Tomas Vondra
<
[email protected]
>
Mon, 7 Nov 2016 19:38:31 +0000
(20:38 +0100)
committer
Tomas Vondra
<
[email protected]
>
Mon, 7 Nov 2016 19:38:31 +0000
(20:38 +0100)
There's a fourth argument (abbrev), so just pass NULL.
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 105b4ebf05a659f3b3a1dfaa34e98bb99a298c55..8141daf14b0f9c89635cb4d5f11b5987f001ae4e 100644
(file)
--- a/
src/backend/pgxc/pool/execRemote.c
+++ b/
src/backend/pgxc/pool/execRemote.c
@@
-4693,7
+4693,7
@@
ExecRemoteQuery(RemoteQueryState *node)
if (combiner->tuplesortstate)
{
if (tuplesort_gettupleslot((Tuplesortstate *) combiner->tuplesortstate,
- true, resultslot))
+ true, resultslot
, NULL
))
return resultslot;
else
ExecClearTuple(resultslot);
@@
-6027,7
+6027,7
@@
primary_mode_phase_two:
if (combiner->tuplesortstate)
{
if (tuplesort_gettupleslot((Tuplesortstate *) combiner->tuplesortstate,
- true, resultslot))
+ true, resultslot
, NULL
))
{
if (log_remotesubplan_stats)
ShowUsageCommon("ExecRemoteSubplan", &start_r, &start_t);