From: Robert Haas Date: Sun, 15 Nov 2015 23:07:57 +0000 (-0500) Subject: Remove accidentally-committed debugging code. X-Git-Tag: REL9_6_BETA1~1095 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=179c97bf587df710f98aa3ce2d95f503b0757e15;p=postgresql Remove accidentally-committed debugging code. Amit Kapila --- diff --git a/src/backend/executor/tqueue.c b/src/backend/executor/tqueue.c index d68666cad9..5735acf10e 100644 --- a/src/backend/executor/tqueue.c +++ b/src/backend/executor/tqueue.c @@ -892,9 +892,6 @@ BuildRemapInfo(TupleDesc tupledesc) Size size; AttrNumber i; bool noop = true; - StringInfoData buf; - - initStringInfo(&buf); size = offsetof(RemapInfo, mapping) + sizeof(RemapClass) * tupledesc->natts; @@ -917,7 +914,6 @@ BuildRemapInfo(TupleDesc tupledesc) if (noop) { - appendStringInfo(&buf, "noop"); pfree(remapinfo); remapinfo = NULL; }