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