]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Remove bogus 'return'.
authorRobert Haas <rhaas@postgresql.org>
Thu, 9 Jan 2020 14:01:37 +0000 (09:01 -0500)
committerRobert Haas <rhaas@postgresql.org>
Thu, 9 Jan 2020 14:01:37 +0000 (09:01 -0500)
Per the buildfarm, via Michael Paquier.

Discussion: http://postgr.es/m/20200108032648.GE3413@paquier.xyz

src/include/access/tableam.h

index 60dbd74a57463cfa76c769f2a3b8ee1b1cc4f922..696451f7285cf7d873bcc46858e0ade5a001bd5a 100644 (file)
@@ -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);
 }