Commit 179c97bf authored by Robert Haas's avatar Robert Haas

Remove accidentally-committed debugging code.

Amit Kapila
parent 7745bc35
...@@ -892,9 +892,6 @@ BuildRemapInfo(TupleDesc tupledesc) ...@@ -892,9 +892,6 @@ BuildRemapInfo(TupleDesc tupledesc)
Size size; Size size;
AttrNumber i; AttrNumber i;
bool noop = true; bool noop = true;
StringInfoData buf;
initStringInfo(&buf);
size = offsetof(RemapInfo, mapping) + size = offsetof(RemapInfo, mapping) +
sizeof(RemapClass) * tupledesc->natts; sizeof(RemapClass) * tupledesc->natts;
...@@ -917,7 +914,6 @@ BuildRemapInfo(TupleDesc tupledesc) ...@@ -917,7 +914,6 @@ BuildRemapInfo(TupleDesc tupledesc)
if (noop) if (noop)
{ {
appendStringInfo(&buf, "noop");
pfree(remapinfo); pfree(remapinfo);
remapinfo = NULL; remapinfo = NULL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment