diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-11-09 10:45:32 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-11-09 10:45:32 -0500 |
commit | 89ff5c7f7512a919e76407b4f8269e5b0b39dd2b (patch) | |
tree | ec9f2ce3093107f9f91d1a4f9bf086a174058175 | |
parent | c31f1dc55992bc8b2c35c0ff99795547d4df323a (diff) | |
download | postgresql-89ff5c7f7512a919e76407b4f8269e5b0b39dd2b.tar.gz postgresql-89ff5c7f7512a919e76407b4f8269e5b0b39dd2b.zip |
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.
-rw-r--r-- | src/backend/executor/tqueue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/executor/tqueue.c b/src/backend/executor/tqueue.c index 7699d98ac65..d68666cad90 100644 --- a/src/backend/executor/tqueue.c +++ b/src/backend/executor/tqueue.c @@ -659,6 +659,7 @@ TupleQueueRemap(TupleQueueReader *reader, RemapClass remapclass, Datum value) } elog(ERROR, "unknown remap class: %d", (int) remapclass); + return (Datum) 0; } /* |