diff options
author | Robert Haas <rhaas@postgresql.org> | 2020-01-09 09:01:37 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2020-01-09 09:01:37 -0500 |
commit | 5acf6d8bb4ec23349604c7c15111959e657ff294 (patch) | |
tree | 96b6ce0f17d91ffc22656638239e5a92b4374284 | |
parent | e3019f631d1f2e21667ad05f903c52d904b9048c (diff) | |
download | postgresql-5acf6d8bb4ec23349604c7c15111959e657ff294.tar.gz postgresql-5acf6d8bb4ec23349604c7c15111959e657ff294.zip |
Remove bogus 'return'.
Per the buildfarm, via Michael Paquier.
Discussion: http://postgr.es/m/20200108032648.GE3413@paquier.xyz
-rw-r--r-- | src/include/access/tableam.h | 9 |
1 files changed, 4 insertions, 5 deletions
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); } |