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:
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user