aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2020-01-09 09:01:37 -0500
committerRobert Haas <rhaas@postgresql.org>2020-01-09 09:01:37 -0500
commit5acf6d8bb4ec23349604c7c15111959e657ff294 (patch)
tree96b6ce0f17d91ffc22656638239e5a92b4374284
parente3019f631d1f2e21667ad05f903c52d904b9048c (diff)
downloadpostgresql-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.h9
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);
}