]> granicus.if.org Git - postgresql/commitdiff
Remove accidentally-committed debugging code.
authorRobert Haas <rhaas@postgresql.org>
Sun, 15 Nov 2015 23:07:57 +0000 (18:07 -0500)
committerRobert Haas <rhaas@postgresql.org>
Sun, 15 Nov 2015 23:07:57 +0000 (18:07 -0500)
Amit Kapila

src/backend/executor/tqueue.c

index d68666cad908599ebd3bf18e7c30d37019eddd62..5735acf10e3356fa8def0ca9fc8aaf695492c5ca 100644 (file)
@@ -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;
        }