aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/tqueue.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-11-09 10:45:32 -0500
committerRobert Haas <rhaas@postgresql.org>2015-11-09 10:45:32 -0500
commit89ff5c7f7512a919e76407b4f8269e5b0b39dd2b (patch)
treeec9f2ce3093107f9f91d1a4f9bf086a174058175 /src/backend/executor/tqueue.c
parentc31f1dc55992bc8b2c35c0ff99795547d4df323a (diff)
downloadpostgresql-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.
Diffstat (limited to 'src/backend/executor/tqueue.c')
-rw-r--r--src/backend/executor/tqueue.c1
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;
}
/*