Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5acf6d8

Browse files
committed
Remove bogus 'return'.
Per the buildfarm, via Michael Paquier. Discussion: http://postgr.es/m/20200108032648.GE3413@paquier.xyz
1 parent e3019f6 commit 5acf6d8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/include/access/tableam.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,11 +1659,10 @@ table_relation_fetch_toast_slice(Relation toastrel, Oid valueid,
16591659
int32 attrsize, int32 sliceoffset,
16601660
int32 slicelength, struct varlena *result)
16611661
{
1662-
return toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid,
1663-
attrsize,
1664-
sliceoffset,
1665-
slicelength,
1666-
result);
1662+
toastrel->rd_tableam->relation_fetch_toast_slice(toastrel, valueid,
1663+
attrsize,
1664+
sliceoffset, slicelength,
1665+
result);
16671666
}
16681667

16691668

0 commit comments

Comments
 (0)