projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3019f6
)
Remove bogus 'return'.
author
Robert Haas
<rhaas@postgresql.org>
Thu, 9 Jan 2020 14:01:37 +0000
(09:01 -0500)
committer
Robert 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
patch
|
blob
|
blame
|
history
diff --git
a/src/include/access/tableam.h
b/src/include/access/tableam.h
index 60dbd74a57463cfa76c769f2a3b8ee1b1cc4f922..696451f7285cf7d873bcc46858e0ade5a001bd5a 100644
(file)
--- 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);
}