From: Robert Haas Date: Thu, 9 Jan 2020 14:01:37 +0000 (-0500) Subject: Remove bogus 'return'. X-Git-Tag: REL_13_BETA1~901 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5acf6d8bb4ec23349604c7c15111959e657ff294;p=thirdparty%2Fpostgresql.git Remove bogus 'return'. Per the buildfarm, via Michael Paquier. Discussion: http://postgr.es/m/20200108032648.GE3413@paquier.xyz --- diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index 60dbd74a574..696451f7285 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -1659,11 +1659,10 @@ table_relation_fetch_toast_slice(Relation toastrel, Oid valueid, int32 attrsize, int32 sliceoffset, int32 slicelength, struct varlena *result) { - return toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid, - attrsize, - sliceoffset, - slicelength, - result); + toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid, + attrsize, + sliceoffset, slicelength, + result); }