Skip to content
Snippets Groups Projects
Commit 89ff5c7f authored by Robert Haas's avatar Robert Haas
Browse files

Add a dummy return statement to TupleQueueRemap.

This is unreachable for multiple reasons, but per Amit Kapila the
Windows compiler he is using still thinks we can get there.
parent c31f1dc5
No related branches found
No related tags found
No related merge requests found
......@@ -659,6 +659,7 @@ TupleQueueRemap(TupleQueueReader *reader, RemapClass remapclass, Datum value)
}
elog(ERROR, "unknown remap class: %d", (int) remapclass);
return (Datum) 0;
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment