diff options
author | Dean Rasheed <dean.a.rasheed@gmail.com> | 2025-09-04 15:59:02 +0100 |
---|---|---|
committer | Dean Rasheed <dean.a.rasheed@gmail.com> | 2025-09-04 15:59:02 +0100 |
commit | a4624929dba3d6e5cef98a6cedd865320db2269c (patch) | |
tree | 05151ad0bf94071822047bb0d1bd4773502ca24b /src/backend/executor/execMain.c | |
parent | 5481cc332b0fc8ca242966813a6675a514c6917b (diff) |
Fix compiler error introduced by 5386bfb9c1f.
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
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 9ed8cd35380..ed4ff0246ce 100644 --- 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); } /* |