1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Remove bogus 'return'.

Per the buildfarm, via Michael Paquier.

Discussion: http://postgr.es/m/20200108032648.GE3413@paquier.xyz
This commit is contained in:
Robert Haas
2020-01-09 09:01:37 -05:00
parent e3019f631d
commit 5acf6d8bb4

View File

@ -1659,11 +1659,10 @@ table_relation_fetch_toast_slice(Relation toastrel, Oid valueid,
int32 attrsize, int32 sliceoffset, int32 attrsize, int32 sliceoffset,
int32 slicelength, struct varlena *result) int32 slicelength, struct varlena *result)
{ {
return toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid, toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid,
attrsize, attrsize,
sliceoffset, sliceoffset, slicelength,
slicelength, result);
result);
} }