projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fd569e
)
Fix compiler error introduced by 5386bfb9c1f.
author
Dean Rasheed
<
[email protected]
>
Thu, 4 Sep 2025 14:57:18 +0000
(15:57 +0100)
committer
Dean Rasheed
<
[email protected]
>
Thu, 4 Sep 2025 14:57:18 +0000
(15:57 +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 cf3867842c99857515ddce2dadc5577cefb31cdf..5d6410480cd924bf87dbf1a5d860542914d9d6ee 100644
(file)
--- a/
src/backend/executor/execMain.c
+++ b/
src/backend/executor/execMain.c
@@
-1134,7
+1134,7
@@
CheckValidResultRelNew(ResultRelInfo *resultRelInfo, CmdType operation,
void
CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation)
{
-
return
CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE);
+ CheckValidResultRelNew(resultRelInfo, operation, ONCONFLICT_NONE);
}
/*