Skip to content

Commit 89ff5c7

Browse files
committed
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.
1 parent c31f1dc commit 89ff5c7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/backend/executor/tqueue.c

+1
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,7 @@ TupleQueueRemap(TupleQueueReader *reader, RemapClass remapclass, Datum value)
659659
}
660660

661661
elog(ERROR, "unknown remap class: %d", (int) remapclass);
662+
return (Datum) 0;
662663
}
663664

664665
/*

0 commit comments

Comments
 (0)