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.
This commit is contained in:
Robert Haas 2015-11-09 10:45:32 -05:00
parent c31f1dc559
commit 89ff5c7f75
1 changed files with 1 additions and 0 deletions

View File

@ -659,6 +659,7 @@ TupleQueueRemap(TupleQueueReader *reader, RemapClass remapclass, Datum value)
}
elog(ERROR, "unknown remap class: %d", (int) remapclass);
return (Datum) 0;
}
/*