We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7745bc3 commit 179c97bCopy full SHA for 179c97b
src/backend/executor/tqueue.c
@@ -892,9 +892,6 @@ BuildRemapInfo(TupleDesc tupledesc)
892
Size size;
893
AttrNumber i;
894
bool noop = true;
895
- StringInfoData buf;
896
-
897
- initStringInfo(&buf);
898
899
size = offsetof(RemapInfo, mapping) +
900
sizeof(RemapClass) * tupledesc->natts;
@@ -917,7 +914,6 @@ BuildRemapInfo(TupleDesc tupledesc)
917
914
918
915
if (noop)
919
916
{
920
- appendStringInfo(&buf, "noop");
921
pfree(remapinfo);
922
remapinfo = NULL;
923
}
0 commit comments