Remove accidentally-committed debugging code.

Amit Kapila
This commit is contained in:
Robert Haas 2015-11-15 18:07:57 -05:00
parent 7745bc352a
commit 179c97bf58
1 changed files with 0 additions and 4 deletions

View 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;
}