projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5481cc3
)
Fix compiler error introduced by 5386bfb9c1f.
author
Dean Rasheed
<dean.a.rasheed@gmail.com>
Thu, 4 Sep 2025 14:59:02 +0000
(15:59 +0100)
committer
Dean Rasheed
<dean.a.rasheed@gmail.com>
Thu, 4 Sep 2025 14:59:02 +0000
(15:59 +0100)
Per buildfarm member wrasse, void function cannot return a value.
This only affects v13-v17, where an ABI-compatible wrapper function
was added.
Backpatch-through: 13-17
src/backend/executor/execMain.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/executor/execMain.c
b/src/backend/executor/execMain.c
index 9ed8cd35380a6d5eac666d90dd242d5ba6b90b49..ed4ff0246cee1917d5eea84a32282428689f42a9 100644
(file)
--- a/
src/backend/executor/execMain.c
+++ b/
src/backend/executor/execMain.c
@@
-1157,7
+1157,7
@@
CheckValidResultRelNew(ResultRelInfo *resultRelInfo, CmdType operation,
void
CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation)
{
-
return
CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE, NIL);
+ CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE, NIL);
}
/*