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