mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
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:
@ -659,6 +659,7 @@ TupleQueueRemap(TupleQueueReader *reader, RemapClass remapclass, Datum value)
|
|||||||
}
|
}
|
||||||
|
|
||||||
elog(ERROR, "unknown remap class: %d", (int) remapclass);
|
elog(ERROR, "unknown remap class: %d", (int) remapclass);
|
||||||
|
return (Datum) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user