Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/backend/cdb/dispatcher/cdbdisp_query.c
Original file line number Diff line number Diff line change
Expand Up @@ -1814,12 +1814,14 @@ bool HandleExtendProtocol(PGconn *conn)

if (pqGetnchar(data, length, conn))
{
pfree(data);
MemoryContextSwitchTo(oldctx);
return false;
}
StringInfo buf = makeStringInfo();
/* Do not change the raw data, let caller process it. */
appendBinaryStringInfoNT(buf, data, length);
pfree(data);
epd->subtagdata[subtag] = lappend(epd->subtagdata[subtag], buf);
MemoryContextSwitchTo(oldctx);
/* Mark subtag to be consumed. */
Expand Down
Loading