diff options
Diffstat (limited to 'src')
-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); } |