projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
421d7a1
)
Fix compiler error introduced by 5386bfb9c1f.
author
Dean Rasheed
<dean.a.rasheed@gmail.com>
Thu, 4 Sep 2025 15:00:01 +0000
(16:00 +0100)
committer
Dean Rasheed
<dean.a.rasheed@gmail.com>
Thu, 4 Sep 2025 15:00:01 +0000
(16:00 +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 9209ec2dc535b7742833c3a7af1c7877f300ade0..7ec4d14f66bb63c9da1595db1b14cb67eb9a39f3 100644
(file)
--- a/
src/backend/executor/execMain.c
+++ b/
src/backend/executor/execMain.c
@@
-1186,7
+1186,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);
}
/*